C++运算符重载
程序员文章站
2022-09-01 17:38:53
1.重载的意义:类之间的运算。 2.示例: <1>类中定义 1 bool operator==(const class& p) 2 { 3 if(this->x==p.x) return true; 4 else return false; 5 } <2>类外定义(左操作数的参数必须显示指定) bo ......
1.重载的意义:类之间的运算。
2.示例:
<1>类中定义
1 bool operator==(const class& p) 2 { 3 if(this->x==p.x) return true; 4 else return false; 5 }
<2>类外定义(左操作数的参数必须显示指定)
bool operator==(class const& p1, class const& p2) { if(p1.x==p2.x) return true; else return false; }
注:class是类名,不是class关键字(笔误
<3>注意
c++要求'='、'[]'、'()'、'->'操作符必须被定义为类的成员操作符,把这些操作符通过全局函数进行重载时会出现编译错误。
其余重载运算符的例子以后再更。