C++操作符重载问题,请高手帮忙!

钱能主编的<<C++程序设计教程(第二版)>>第262页有这样一个例子://**********************************************/... 钱能主编的<<C++程序设计教程(第二版)>>第262页有这样一个例子:
//**********************************************
// 重载操作符
//**********************************************
#include <iostream>
using namespace std;
//##############################################
class Point
{
int x,y;
public:
void set(int a,int b)
{
x=a,y=b;
}
void print() const
{
cout<<"("<<x<<","<<y<<")\n";
}
friend Point operator+(const Point &a,const Point &b);
friend Point add( Point &a, Point &b);
};
//---------------------------------------------------------
Point operator+( Point &a,Point &b)
{
Point s;
s.set(a.x+b.x,a.y+b.y);
return s;
}//---------------------------------------------------------
Point add( Point &a, Point &b)
{
Point s;
s.set(a.x+b.x,a.y+b.y);
return s;
}//===========================================================
void main()
{
Point a,b;
a.set(3,2);
b.set(1,5);
(a+b).print();
operator+(a,b).print();
add(a,b).print();
}
//########################################################

出错信息如下:
--------------------Configuration: p262 - Win32 Debug--------------------
Compiling...
p262.cpp
C:\Documents and Settings\fhqfhq\p262.cpp(19) : fatal error C1001: INTERNAL COMPILER ERROR
(compiler file 'msc1.cpp', line 1786)
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
Error executing cl.exe.

p262.exe - 1 error(s), 0 warning(s)
请高手帮忙看看哪里有错?
为什么要加声明"Point operator+(Point &a,Point &b);"
函数定义之前又没有使用.不明白,请高手再说的详细一点.
展开
 我来答
linmate
2006-05-20 · TA获得超过431个赞
知道小有建树答主
回答量:466
采纳率:0%
帮助的人:348万
展开全部
我也调试了一遍,找不到错误,我也很想知道哪错了,哪位高手说得详细一些吧...
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
爱着泔水的猪
2006-05-20
知道答主
回答量:65
采纳率:0%
帮助的人:0
展开全部
是不是编译器有问题啊!用的vc++
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Zz小虾米
2006-05-20 · TA获得超过186个赞
知道小有建树答主
回答量:503
采纳率:0%
帮助的人:237万
展开全部
#include <iostream>
using namespace std;
class Point;//要加声明
Point operator+(Point &a,Point &b);//要加声明
//##############################################
class Point
{
public:
int x,y;
void set(int a,int b)
{
x=a,y=b;
}
void print() const
{
cout<<"("<<x<<","<<y<<")\n";
}
friend Point operator+(const Point &a,const Point &b);
friend Point add( Point &a, Point &b);
};
//---------------------------------------------------------
Point operator+( Point &a,Point &b)
{
Point s;
s.set(a.x+b.x,a.y+b.y);
return s;
}//---------------------------------------------------------
Point add( Point &a, Point &b)
{
Point s;
s.set(a.x+b.x,a.y+b.y);
return s;
}//===========================================================
void main()
{
Point a,b;
a.set(3,2);
b.set(1,5);
(a+b).print();
operator+(a,b).print();
add(a,b).print();
}
//########################################################
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式