首页 > 其他 > 详细

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

时间:2014-06-25 11:11:20      阅读:399      评论:0      收藏:0      [点我收藏+]
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

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!