文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>c++ operator重载的例子

c++ operator重载的例子

时间:2011-06-09  来源:gaofengthucs

#include <iostream>
using namespace std;
class A
{
public:
        A(double _data = 0.0):data(_data){}
        A& operator = (const A& rhs)
        {
                data = rhs.data;
                return *this;
        }
        
        friend A operator + (const A& lhs,const A& rhs);
        friend A operator - (const A& lhs,const A& rhs);
        friend A operator * (const A& lhs,const A& rhs);
        friend A operator + (const A& lhs,double rhs);
        friend A operator + (double lhs,const A& rhs);
        friend A operator * (const A& lhs,double rhs);
        friend A operator * (double lhs,const A& rhs);
        friend A operator - (const A& lhs,double rhs);
        friend A operator - (double lhs,const A& rhs);
        
        
        friend ostream& operator << (ostream& fout,A& a);
//      A& operator += (const A& rhs);
//      A& operator -= (const A& rhs);
//      A& operator *= (const A& rhs);  
private:
        double data;
};

A operator + (const A& lhs,const A& rhs)
{
        A res(0);
        res.data = lhs.data + rhs.data;
        return res;
}
A operator - (const A& lhs,const A& rhs)
{
        A res(0);
        res.data = lhs.data - rhs.data;
        return res;
}
A operator * (const A& lhs,const A& rhs)
{
        A res(0);
        res.data = lhs.data * rhs.data;
        return res;
}
 A operator + (const A& lhs,double rhs)
 {
        A res(0);
        res.data = lhs.data + rhs;
        return res;
}

A operator + (double lhs,const A& rhs)
{
        A res(0);
        res.data = lhs + rhs.data;
        return res;
}
A operator * (const A& lhs,double rhs)
{
        A res(0);
        res.data = lhs.data * rhs;
        return res;
}
A operator * (double lhs,const A& rhs)
{
        A res(0);
        res.data = lhs * rhs.data;
        return res;
}
A operator - (const A& lhs,double rhs)
{
        A res(0);
        res.data = lhs.data - rhs;
        return res;     
}
A operator - (double lhs,const A& rhs)
{
        A res(0);
        res.data = lhs - rhs.data;
        return res;     
}
        
ostream& operator << (ostream& fout,A& a)
{
        fout << a.data ;
        return fout;
}
int main(int argc, char* argv[])
{
        A a(2.3);
        A b(1.2);
        A d(3.4);
        A c;
        c = a + b + d;
        c=a+b;
        c=a+1.0;
        c=a-b;
        c=a-1.0;
        c=a*b;
        c=a*1.0;
        cout << c << endl;
        
        c=1.0+2.0*a*a-3.0*a*b;
        cout << c << endl;
        return 0;
}
相关阅读 更多 +
排行榜 更多 +
耶小兔子2

耶小兔子2

休闲益智 下载
nba2k20豪华版

nba2k20豪华版

体育竞技 下载
画线征服火柴人安卓版

画线征服火柴人安卓版

动作格斗 下载