1

我使用strcpy_s如下:

char names[2][20];
strcpy_s(names[0],"Michael");
strcpy_s(names[1],"Danny");

它工作得很好。

但是当我更改char **

int size1=2;
int size2=20;

char **names=new char*[size1];
for(int i=0;i<size1;i++)
  names[i]=new char[size2];
strcpy_s(names[0],"Michael");
strcpy_s(names[1],"Danny");

它给了我这个错误信息:

错误 C2660:“strcpy_s”:函数不接受 2 个参数

为什么会这样?我需要动态创建char数组,我该怎么办?

4

1 回答 1

9

有两种形式strcpy_s(至少在 Windows 上):一种用于指针,一种用于数组。

errno_t strcpy_s(
   char *strDestination,
   size_t numberOfElements,
   const char *strSource 
);
template <size_t size>
errno_t strcpy_s(
   char (&strDestination)[size],
   const char *strSource 
); // C++ only

使用指针时,您必须指定目标缓冲区的元素数:

strcpy_s(names[0], size2, "Michael");
strcpy_s(names[1], size2, "Danny");
于 2012-06-03T09:28:01.117 回答