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

C++ 字符串常用函数

时间:2015-01-17 11:12:56      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

1. int与string相互转换

    char*itoa(int ,char *,n);  //n为int转换的进制,如10表示转换成10进制,8表示转谎称8进制等等

    int atoi(const char *);

2. char* 复制函数

    char * strcpy(char * dest, const char * src);

    void * memcpy(void * dest, void * src , unsigned int size);  //void* 表示未定义的指针类型,可以是int*,short*,char*

 

C++ 字符串常用函数

标签:

原文地址:http://www.cnblogs.com/HanEichy/p/4230163.html

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