C++string字符串和C字符串的转换

#include<iostream>#include<string>intmain(){usingnamespacestd;stringfirst_name,last_n... #include<iostream>
#include<string>

int main()
{
using namespace std;

string first_name,last_name;

first_name="this is my c string";
char a[20];

strcpy(a,first_name);
cout<<a;

return 0;
}我想问strcpy(a,first_name);这里不是可以把string字符串转换成C字符串a吗??为什么还报错!!!
D:\Microsoft Visual Studio\MyProjects\试题2\lihui.cpp(13) : error C2664: 'strcpy' : cannot convert parameter 2 from 'class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >' to 'const char *'
No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called
而且改成这种也不行
a=first_name;
展开
 我来答
帐号已注销
2008-09-19 · TA获得超过484个赞
知道小有建树答主
回答量:527
采纳率:0%
帮助的人:322万
展开全部
C格式字符串转string可以直接转
string str;
str = "Hello World!";

string转C格式
string str = "Hello World!";
char *str = str.c_str();
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
beddy1
2008-09-19 · TA获得超过1989个赞
知道大有可为答主
回答量:2271
采纳率:0%
帮助的人:2201万
展开全部
string是不能自动转换成char* 的,他们完全是两回事。first_name.c_str();这样可以达到你要的目的,但是返回的结果是常量,意思是只能读,不能写。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式