| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 756 人关注过本帖
标题:[求助]友元 重载+出错
取消只看楼主 加入收藏
hnzzc
Rank: 1
等 级:新手上路
帖 子:86
专家分:0
注 册:2006-4-26
收藏
 问题点数:0 回复次数:1 
[求助]友元 重载+出错

#include <iostream>
using namespace std;
class Point
{
private:
int x;
int y;
public:
Point(){};
Point (int a,int b)
{
x=a;
y=b;
}
~Point(){};
void set(int a,int b);
int get_x(){return x;}
int get_y(){return y;}
void print() const
{
cout<<"("<<x<<","<<y<<")\n";
}
friend Point operator + ( Point &a,Point &b);
};

void Point::set(int a,int b)
{
x=a;
y=b;
}

point operator + ( Point &a,Point &b)
{
return (a.x+b.x,a.y+b.y);
}

void main()
{
Point a,b;
a.set(3,2);
b.set(1,5);
(a+b).print();
//add(a,b).print();

}

:\C++\c++作业\3\d.cpp(85) : 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
执行 cl.exe 时出错.

请问:这个是什么意思??

搜索更多相关主题的帖子: 重载 
2006-12-08 13:30
hnzzc
Rank: 1
等 级:新手上路
帖 子:86
专家分:0
注 册:2006-4-26
收藏
得分:0 
已经发现错误了,
将#include <iostream>
using namespace std;
改成#include<iostream.h>
就可以了.
#include <iostream>
using namespace std;和#include<iostream.h>有什么区别
2006-12-08 15:35
快速回复:[求助]友元 重载+出错
数据加载中...
 
   



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

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