It would be very useful to be able to overload the . operator in C++ and return a reference to an object.
You can overload operator-> and operator* but not operator.
Is there a technical reason for this?
|
2
|
It would be very useful to be able to overload the . operator in C++ and return a reference to an object. You can overload Is there a technical reason for this?
|
||||
|
|
|
See here: Member access (selection) operator (that's how
This problem can be solved in several ways, but at the time of standardization it was not obvious which way would be best. See The Design and Evolution of C++ for further details. |
||
|
|
|
Stroustrup said C++ should be an extensible, but not mutable language. The dot (attribute access) operator was seen as too close to the core of the language to allow overloading. See The Design and Evolution of C++, page 242, section 11.5.2 Smart References.
The "I" in this quote is Bjarne Stroustrup. You cannot be more authoritative than that. If you want to really understand C++ (as in "why is it this way"), you should absolutely read this book. |
||
|
|
|
|
Stroutstrup has an answer for this question:
|
||
|
|