When designing the overloaded operators for a class, we must choose whether to make each
operator a class member or an ordinary nonmember function. In some cases, the programmerhas no choice; the operator must be a member.
In other cases, there are some rules of thumb that can help guide the decision. The following guidelines can be of help when deciding whether
to make an operator a member or an ordinary nonmember function: he assignment (= ), subscript ([] ), call (() ),
and member access arrow (-> ) operators must be defined as members. Defining any of these operators as a nonmember function is
flagged at compile time as an error.
Like assignment, the compound-assignment operators ordinarily ought to be members of the class. Unlike assignment, they are not required to be so and the compiler will not
complain if a nonmember compound-assignment operator is defined.
Other operators that change the state of their object or that are closely tied to their given
typesuch as increment, decrement, and dereferenceusually should be members of the
class.
Symmetric operators, such as the arithmetic, equality, relational,
and bitwise operators, are best defined as ordinary nonmember functions.
操作符重载成员还是非成员函数选择【c++ primer 】
最新推荐文章于 2026-01-03 02:32:32 发布
本文探讨了在C++中设计运算符重载时选择成员函数还是非成员函数的问题。详细介绍了必须作为成员函数的几种运算符,并给出了推荐将算术、比较等对称运算符定义为非成员函数的建议。
3243

被折叠的 条评论
为什么被折叠?



