| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 456 人关注过本帖
标题:引用调用,搞不明白,大家来讨论讨论
取消只看楼主 加入收藏
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
快速回复:引用调用,搞不明白,大家来讨论讨论
数据加载中...
 
   



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

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