为何同一段c++代码在VC++6.0上面能运行,而在VC8.0上面就不能运行了?

同一段代码在VC++6.0上面能编译并运行,而到vc++8.0上面就只能编译通过,而不能运行了!这是为什么??以下代码在VC++8.0中能编译通过,可是却不能运行,这是为... 同一段代码在VC++6.0上面能编译并运行,而到vc++8.0上面就只能编译通过,而不能运行了!这是为什么??
以下代码在VC++8.0中能编译通过,可是却不能运行,这是为什么??
# include <iostream>
using namespace std;
template<class type>
class Sample
{
protected:
type Tn;
public:
Sample(type T)
{
Tn=T;
}
friend bool operator==(Sample&,Sample&);
void dispaly()const
{
cout<<Tn<<endl;
}
};
template<class type>
bool operator==(Sample<type>& s1,Sample<type>& s2)
{
if(s1.Tn==s2.Tn)
return true;
else return false;
}
void main(void)
{
Sample<int>S1(10),S2(20),S3(10);
cout<<"S1==";
S1.dispaly();
cout<<"S2==";
S2.dispaly();
cout<<"S3==";
S3.dispaly();
if(S1==S2) cout<<"S1==S2"<<endl;
else cout<<"S1!=S2"<<endl;
if(S1==S3) cout<<"S1==S3"<<endl;
else cout<<"S1!=S3"<<endl;

Sample<char>S4('a'),S5('b'),S6('a');
cout<<"S4==";
S4.dispaly();
cout<<"S5==";
S5.dispaly();
cout<<"S6==";
S6.dispaly();
if(S4==S5) cout<<"S4==S5"<<endl;
else cout<<"S4!=S5"<<endl;
if(S4==S6) cout<<"S4==S6"<<endl;
else cout<<"S4!=S6"<<endl;
}
展开
 我来答
百度网友9b4d9e04e
2009-05-24 · 超过26用户采纳过TA的回答
知道答主
回答量:90
采纳率:0%
帮助的人:0
展开全部
VC++6.0跟标准C++差别太大了,vc++8.0向标准C++更靠近了,不过差别应该不大,你按照提示信息稍微修改下应该就好了

你给那个程序我编译都没有通过。。。
祚胤17
2009-05-24 · TA获得超过786个赞
知道大有可为答主
回答量:1148
采纳率:82%
帮助的人:592万
展开全部
改成这样就行了:
# include <iostream>
using namespace std;
template<class type>
class Sample
{
protected:
type Tn;
public:
Sample(type T)
{
Tn=T;
}
friend bool operator==(Sample& s1,Sample& s2)
{
if(s1.Tn==s2.Tn)
return true;
else return false;
}
void dispaly()const
{
cout<<Tn<<endl;
}
};
void main(void)
{
Sample<int>S1(10),S2(20),S3(10);
cout<<"S1==";
S1.dispaly();
cout<<"S2==";
S2.dispaly();
cout<<"S3==";
S3.dispaly();
if(S1==S2) cout<<"S1==S2"<<endl;
else cout<<"S1!=S2"<<endl;
if(S1==S3) cout<<"S1==S3"<<endl;
else cout<<"S1!=S3"<<endl;

Sample<char>S4('a'),S5('b'),S6('a');
cout<<"S4==";
S4.dispaly();
cout<<"S5==";
S5.dispaly();
cout<<"S6==";
S6.dispaly();
if(S4==S5) cout<<"S4==S5"<<endl;
else cout<<"S4!=S5"<<endl;
if(S4==S6) cout<<"S4==S6"<<endl;
else cout<<"S4!=S6"<<endl;
}
直接将运算符重载的定义放在声明的地方。

参考资料: http://zhidao.baidu.com/question/19781807.html

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
极天异云
2009-05-24 · TA获得超过1054个赞
知道小有建树答主
回答量:1170
采纳率:42%
帮助的人:391万
展开全部
能编译通过就能运行的
如果不能运行的话,重点考虑一下环境的问题。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式