c# - Are get and set functions popular with C++ programmers? - Stack Overflow
I'd argue that providing accessors are more important in C++ than in C#. C++ has no builtin support for properties. In C# you can change a public field to a property mostly without changing the user code. In C++ this is harder. For less typing you can imp...