码迷,mamicode.com
首页 > 其他好文 > 详细

c_str() 函数

时间:2014-05-24 07:28:57      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:class   c   tar   ext   http   a   

包含文件:string.h
函数名: c_str
功能:string转char数组
 
用法:
char c[20]; 
string s="1234";
strcpy(c,s.c_str());
这样才不会出错,c_str()返回的是一个临时指针,不能对其进行操作

c_str() 函数,布布扣,bubuko.com

c_str() 函数

标签:class   c   tar   ext   http   a   

原文地址:http://www.cnblogs.com/lanye/p/3736315.html

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