strcpy_s for char **和char [] []

时间:2012-06-03 09:23:32

标签: c++ arrays char strcpy

我使用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数组,所以我该怎么办?

1 个答案:

答案 0 :(得分:7)

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");