我正在尝试替换旧的C宏:
// Copy the contents of the character array b into character array a. If the source // array is larger than the destination array,limit the amount of characters copied #define STRCPY(a,b) if(b) strncpy(a,b,sizeof(a) < sizeof(b) ? sizeof(a) : sizeof(b))
我希望模板能有所帮助.也许这样的事情,但它不起作用.
template <typename T,size_t N,typename TT,size_t M> void scopy(T (dest[N]),const TT (src[M])) { strncpy(dest,src,N < M ? N : M); } int main() { char foo[10] = "abc"; char bar[5] = "xyz"; scopy(foo,bar); }
gcc报告不好
编辑:我的伪示例使用了不同于我获得的实际编译器错误的不同大小的数组.现在修复了
error: no matching function for call to ‘scopy(char [5],const char [10])’@H_403_14@