How can you modify an object without calling member functions?

后端 未结 7 2433
不知归路
不知归路 2021-02-13 15:41

At 3.10/10, the standard says:

An lvalue for an object is necessary in order to modify the object except that an rvalue of class type can also be used to

相关标签:
7条回答
  • 2021-02-13 16:30

    How can one modify an object without calling a member function?

    By assigning a value to one of the object's visible data members, of course.

    0 讨论(0)
提交回复
热议问题