error C2664: 'swap' : cannot convert parameter 1 from 'char *' to 'class std::basic_string<char,st

errorC2664:'swap':cannotconvertparameter1from'char*'to'classstd::basic_string<char,st... error C2664: 'swap' : cannot convert parameter 1 from 'char *' to 'class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > *' Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast出错了,但是不知道怎么改~~求大神!!

#include <iostream>
#include <string>
using namespace std;
int main()
{ void swap(string * , string * ) ;
string str1=" " ;
string str2=" " ;
string str3=" " ;
char *p1=&str1[0],*p2=&str2[0],*p3=&str3[0];
cout<<"请输入3个字符串:"<<endl;
gets(p1);
gets(p2);
gets(p3);
if(strcmp(p1,p2)>0) swap(p1,p2);
if(strcmp(p1,p3)>0) swap(p1,p3);
if(strcmp(p2,p3)>0) swap(p2,p3);
cout<<str1<<" "<<str2<<" "<<str3<<endl;
return 0;
}
void swap(string *s1,string *s2)
{string temp;
temp=*s1;
*s1=*s2;
*s2=temp;}
展开
 我来答
百度网友129951a
推荐于2016-11-18 · TA获得超过121个赞
知道答主
回答量:29
采纳率:0%
帮助的人:17.7万
展开全部
string不能这么用!
char *p1=str1.c_ctr(),*p2=str2.c_ctr,*p3=str3.c_ctr();

这段代码相当不堪,建议用c++的swap算法或 string的swap函数来实现。
#include <string>
#include <iostream>
using namespace std;
int main()
{
string name("这是先前的");
cout<<name<<endl;
string swapname("这是调换后的");
name.swap(swapname);
cout<<name<<endl;
return 0;
}
来自:求助得到的回答
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式