Which C++ operators can not be overloaded at all without friend function?
|
feedback
|
|
The operators where the left-hand-side operand is not the class itself. For example EDIT: Friending is not needed, ever. But it can make things simpler. | |||||||||||||||
feedback
|
|
You only need a friend declaration if:
Otherwise, you can implement any operator without a friend declaration. To make this a little bit more concrete... one can define various operators both inside and outside of a class*:
If, in the example above, the "add" function were private, then there would need to be a friend declaration in the latter example in order for *There are cases where an operator cannot be defined inside a class (e.g. if you don't have control over the code of that class, but would still like to provide a definition where that type is on the left-hand side, anyway). In those cases, the same statement regarding friend declarations still holds true: a friend declaration is only needed for access purposes. As long as the implementation of the operator function relies only on public functions and variables, a friend declaration is not needed. | |||||||||
feedback
|
|
The only reason to use friend function is to access the private(including protected) member variable and functions. | |||
|
feedback
|
|
You never need a friend function. If you don't want the operator to be a member (usually the case for binary operators which do not modify their operands), there's no requirement for it to be a friend. There are two reasons one might make it a friend, however:
The second reason mainly applies to templates, but it's common to define
operators like | |||
|
feedback
|
|
Operator overloading and friendship are orthogonal concepts. You need to declare a function (any function) Note that in general it is better not to declare There is an specific corner case, with class templates, where you might want to declare a free function operator as a friend of the template just to be able to define it inside the template class, even if it does not need access to private members:
This has the advantage that you define a single non-templated function as a friend in a simple straightforward way. To move the definition outside of the class template, you would have to make it a template and the syntax becomes more cumbersome. | |||
|
feedback
|
|
You need to use a friend function when Edit: And, of course, if you actually need the | |||||
feedback
|