| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 804 人关注过本帖
标题:帮忙看看问题出在哪里 关于运算符重载
取消只看楼主 加入收藏
lindayanglong
Rank: 1
等 级:新手上路
帖 子:86
专家分:0
注 册:2008-3-9
收藏
 问题点数:0 回复次数:1 
帮忙看看问题出在哪里 关于运算符重载
#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="<<x<<' '<<"y="<<y<<endl;
    }
    friend  Point operator+(const Point& a,const Point& b);
    friend   Point add(const Point& a, const Point& b);

};
  Point add(const Point& a, const Point& b)
{
    Point s;
    s.set(a.x+b.x,a.y+b.y);
    return s;
}
 Point operator +(const Point& a,const Point& b)
{
    Point s;
    s.set(a.x+b.x,a.y+b.y);
    return s;
}
int main()
{
    Point a,b;
    a.set(3,2);
    b.set(1,5);
    (a+b).print();
    operator+(a,b).print();
    add(a,b).print();

}
搜索更多相关主题的帖子: 运算符 重载 
2008-09-02 15:11
lindayanglong
Rank: 1
等 级:新手上路
帖 子:86
专家分:0
注 册:2008-3-9
收藏
得分:0 
我怎么会出现这样的运行错误啊?
Compiling...
a3.cpp
E:\vc++实验\a3\a3.cpp(15) : 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.

a3.obj - 1 error(s), 0 warning(s)
2008-09-02 18:21
快速回复:帮忙看看问题出在哪里 关于运算符重载
数据加载中...
 
   



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

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