码迷,mamicode.com
首页 > 其他好文 > 详细

作为类的成员函数,重载运算符只能有一个参数

时间:2014-06-25 11:11:37      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:class   blog      io   一个   amp   

1 overload a operator of a class, you can only use one para., this pointer is automatically used.
  
  class Rational
  {
    public:
 
  //not correct since this ponit would be used automatically.
  //Rational operator+ (const Rational& lhs, const Rational& rhs);
  
  //correct
  Rational operator+ (const Rational& rhs);
  }

  

 
2 outside the class two para are allowed
 
Rational operator+(const Rational& lhs, const Rational& rhs))

  

作为类的成员函数,重载运算符只能有一个参数,布布扣,bubuko.com

作为类的成员函数,重载运算符只能有一个参数

标签:class   blog      io   一个   amp   

原文地址:http://www.cnblogs.com/williamwood/p/3807286.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!