码迷,mamicode.com
首页 > 编程语言 > 详细

C++中 _itoa_s方法简介

时间:2014-05-14 07:37:21      阅读:311      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   c   

_itoa_s 函数原型如下:

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

使用如下:

bubuko.com,布布扣
 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 }
bubuko.com,布布扣

 

C++中 _itoa_s方法简介,布布扣,bubuko.com

C++中 _itoa_s方法简介

标签:style   blog   class   code   java   c   

原文地址:http://www.cnblogs.com/csxcode/p/3725586.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!