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

c++中c_str()用法

时间:2019-01-20 10:35:13      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:方法   内容   不可   let   span   end   成员函数   new   col   

string c="abc123";
char *d=new char[20];
strcpy(d,c.c_str());
cout<<"c:"<<c<<endl;
cout<<"d:"<<d<<endl;
delete d;

这样才不会出错,c_str()返回的是一个临时指针,不能对其进行操作,因为c++中,临时量都是以常量创建,不可修改。

语法: const char *c_str();

c_str()函数返回一个指向正规C字符串的指针, 内容与本string串相同.,这是为了与c语言兼容,在c语言中没有string类型,故必须通过string类对象的成员函数c_str()把string 对象转换成c中的字符串样式。

注意:一定要使用strcpy()函数 等来操作方法c_str()返回的指针

c++中c_str()用法

标签:方法   内容   不可   let   span   end   成员函数   new   col   

原文地址:https://www.cnblogs.com/litifeng/p/10293954.html

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