C++中字符串引用的问题
有这么一段程序:#include<iostream>#include<cstring>usingnamespacestd;voidfun(char&s[20]){char...
有这么一段程序:#include<iostream>#include<cstring>using namespace std; void fun(char & s[20]){ char temp[20]; cin>>temp; strcpy(temp,s);} int main(){ char str[20]; fun(str); cout<<str; return 0;} 编译通不过。请问这里面的深层次原因?如果要达到程序所要表达的功能,应该怎样处理呢?
展开
展开全部
C的字符串实质是char型数组,数组没有引用,C也没有引用类型,所以不能引用传递。C++兼容C的char型数组,C++虽有引用类型,但数组没有引用的规则仍然有效,所以也不能用引用传递char型数组。C++的字符串是类string的对象,类对象是允许引用的,所以C++的字符串对象是可以引用传递的,以下代码可以佐证:
//#include "stdafx.h"//If the vc++6.0, with this line.
#include <string>
#include <iostream>
using namespace std;//
string &myfunc(string &a,string &b){//字符串引用形参a、b
return a+=b;
}
int main(int argc,char *argv[]){
string s1,s2;
cout << "Input 2 strings...\n";
cin >> s1 >> s2;
cout << myfunc(s1,s2) << endl;//将s1、s2的引用传给了函数
return 0;
}
运行样例如下:
2013-08-31
展开全部
错在以下两个地方:(1)数组传递本就是指针传递,不能使用引用方式,系统会报错arrays of references are illegal(对数组引用是错误的),去掉&符号编译是没有问题的。(2)你的strcpy(temp,s);正好写反了,应该是strcpy(s,temp);这才是把temp的内容复制到s中。
最终代码:#include<iostream>#include<cstring>using namespace std;
void fun(char s[20]){ char temp[20]; cin>>temp; strcpy(s,temp);}
int main(){ char str[20]; fun(str); cout<<str; return 0;}
最终代码:#include<iostream>#include<cstring>using namespace std;
void fun(char s[20]){ char temp[20]; cin>>temp; strcpy(s,temp);}
int main(){ char str[20]; fun(str); cout<<str; return 0;}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-08-31
展开全部
void fun(char & s[20])改为void fun(char *s)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询