_itoa_s 函数原型如下:

1 _itoa_s
2 (
3     int value,
4     char *buffer,
5     size_t sizeInCharacters,  //存放结果的字符数组长度
6     int radix //进制
7 );

使用如下:

 1 const int g_MaxNumberLength = 10 ;//数的最大位数
 2 void intochar(int* numbers , int lenght)
 3 {
 4     char** strNum = new char*[lenght];//创建一个字符串数组的数组
 5     for (int i = 0 ; i <lenght ; i++)
 6     {
 7         strNum[i] = new char[g_MaxNumberLength + 1] ;//为字符串分配内存
 8         _itoa_s(numbers[i],strNum[i], g_MaxNumberLength+1 ,10);//将整数转换成字符串
 9 
10     }
11 }

 

相关文章:

  • 2022-01-03
  • 2022-12-23
  • 2022-12-23
  • 2021-06-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-20
猜你喜欢
  • 2022-03-07
  • 2022-12-23
  • 2021-05-29
  • 2022-12-23
  • 2022-12-23
  • 2021-07-15
  • 2022-12-23
相关资源
相似解决方案