标题:请教大家如何把string类型转为char*,谢谢
只看楼主
wumingsx
Rank: 1
等 级:新手上路
帖 子:20
专家分:0
注 册:2006-3-10
 问题点数:0 回复次数:3 
请教大家如何把string类型转为char*,谢谢

#include<iostream>
#include<string>
using namespace std;

int main(){
string a="123";
char *temp=new char[];
temp=dynamic_cast<char*>(&a);
cout<<temp<<endl;
cout<<a<<endl;
return 0;
}

搜索更多相关主题的帖子: string char 类型 temp cout 
2006-04-01 00:13
gototheworld
Rank: 1
等 级:新手上路
帖 子:218
专家分:0
注 册:2006-3-24
得分:0 
#include <iostream>
using namespace std;
int main()
{
string a="123";
const char* temp=a.data();
cout<<temp<<endl;
cout<<a.data()<<endl;
system("pause");
return 0;
}

路漫漫其修远兮 吾将上下而求索
2006-04-01 00:33
myajax95
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:30
帖 子:2978
专家分:0
注 册:2006-3-5
得分:0 

#include<iostream>
#include<string>
using namespace std;

int main(int argc, char* argv[])
{
string a="123";
char *temp=new char[100];
strcpy(temp, a.c_str());

cout<<temp<<endl;
cout<<a<<endl;
return 0;
return 0;
}


http://myajax95./
2006-04-02 12:39
GISboy
Rank: 1
等 级:新手上路
帖 子:26
专家分:0
注 册:2006-2-28
得分:0 
谢谢大家的回答,我也感觉到受教了!

2006-04-03 13:05



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-54273-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.807666 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved