标题:引用调用,搞不明白,大家来讨论讨论
取消只看楼主
wmq
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2007-8-27
 问题点数:0 回复次数:0 
引用调用,搞不明白,大家来讨论讨论

我在vc6中写了个交换两数的小程序,使用了引用类型作形参,如下:
#include<iostream>

using namespace std;

void main()
{
int a,b;
void swap(int& x,int& b);//问题就在这
cout<<"Please input two integer:\n";
cin>>a>>b;
cout<<"before swaped"<<endl;
cout<<"a="<<a<<",b="<<b<<""<<endl;
cout<<"swaped"<<endl;
swap(a,b);
cout<<"a="<<a<<",b="<<b<<endl;o
}

void swap(int &x,int &y)
{
int t;
t=x;
x=y;
y=t;
}
运行,输入
3 5
得到的结果是
3 5
3 5//其他我省了
明显错误了嘛


把程序改为
#include<iostream>

using namespace std;

void swap(int& x,int& b);//原型声明放在函数外,这下就对了

void main()
{
int a,b;
cout<<"Please input two integer:\n";
cin>>a>>b;
cout<<"before swaped"<<endl;
cout<<"a="<<a<<",b="<<b<<""<<endl;
cout<<"swaped"<<endl;
swap(a,b);
cout<<"a="<<a<<",b="<<b<<endl;
}

void swap(int &x,int &y)
{
int t;
t=x;
x=y;
y=t;
}
这样能得到正确结果

奇怪了!我想破头也没有想出原因,手头资料又找不到答案,故发在这里,希望各位讨论讨论,共同进步



搜索更多相关主题的帖子: include before 
2007-09-23 21:16



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




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

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