C++ 引用做函数返回值类型
1)intsum(inta,intb){ints=a+b;retruns;}2)ints;intsum(inta,intb){s=a+b;retruns;}3)ints;...
1)int sum(int a, int b) {int s=a+b; retrun s;}
2)int s;
int sum(int a, int b) { s=a+b; retrun s;}
3)int s;
int & sum(int a, int b) { s=a+b; retrun s;}
4)int& sum(int a, int b) {int s=a+b; retrun s;}
5)int& sum(int a, int b) {int s=a+b; retrun s;}
在主函数中依次根据上面五个函数的格式进行调用,格式如下:
void main() { int & c= sum(2, 3);
cout<< c<<endl;
c = c+10; cout<< c<<endl; }
指出运行结果并说明原因。
新手请教,谢谢! 展开
2)int s;
int sum(int a, int b) { s=a+b; retrun s;}
3)int s;
int & sum(int a, int b) { s=a+b; retrun s;}
4)int& sum(int a, int b) {int s=a+b; retrun s;}
5)int& sum(int a, int b) {int s=a+b; retrun s;}
在主函数中依次根据上面五个函数的格式进行调用,格式如下:
void main() { int & c= sum(2, 3);
cout<< c<<endl;
c = c+10; cout<< c<<endl; }
指出运行结果并说明原因。
新手请教,谢谢! 展开
2个回答
展开全部
1.正确,返回值类型
2.正确,s为全局变量,函数中给s赋值。
3.正确,s为全局变量,函数中对s操作,返回全局对象的引用。
4.错误,s为局部变量,函数调用结束后,s被销毁。返回局部对象的引用是错误的。
5.和4不是一样么?
1.2.3输出为
5
15
2.正确,s为全局变量,函数中给s赋值。
3.正确,s为全局变量,函数中对s操作,返回全局对象的引用。
4.错误,s为局部变量,函数调用结束后,s被销毁。返回局部对象的引用是错误的。
5.和4不是一样么?
1.2.3输出为
5
15
更多追问追答
追问
进行调用时是不是这样就行了?
#include
using namespace std;
int sum(int a, int b)
{
int s=a+b;
return s;
}
void main()
{
int &c= sum(2,3);
cout<<c<<endl;
c = c+10;
cout<<c<<endl;
}
追答
为什么要int &c= sum(2,3);
这样是不对的。sum函数返回的是一个值类型。临时对象自带const。如果你要给引用初始化的话
应该是const int &c =sum(2,3);
你这样没什么意义。这个引用你后面也不能做左值。
直接int c=sum(2,3);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询