Are get and set functions popular with C++ programmers?

前端 未结 14 748
忘掉有多难
忘掉有多难 2020-11-28 23:12

I\'m from the world of C# originally, and I\'m learning C++. I\'ve been wondering about get and set functions in C++. In C# usage of these are quite popular, and tools like

14条回答
  •  既然无缘
    2020-11-29 00:03

    Getting and setting data members qua data members: Bad.
    Getting and setting elements of the abstraction: Good.

提交回复
热议问题