I'm a total newbie with tons of ?'s in my mind and a lot to experience with C++ yet! There's been something which I find really confusing and it's the use of public variables, I've seen tons of code like this:
class Foo {
private:
int m_somePrivateVar;
public:
void setThatPrivateVar (int const & new_val) {
m_somePrivateVar = new_val;
}
int getThatPrivateVar (void) const {
return m_somePrivateVar;
}
};
Why would anyone hide that variable and implement accessors and mutators when there's nothing done in them more than assigning the new value just as it got received (no range checking etc.) or returning the value without just as it is? Well I've heard some reasons and some of them are convincing in some cases, but imagine implementing a huge class in such a manner for with a lot of variables which do not need any checking and stuff! Let me ask you this way, When do you use public variables? Do you use that at all?
Thanks in advance.
Foooffers, not the current implementation ofFoo. On which subject, don't call a functionSetThatPrivateVar, because the public interface shouldn't even mention things that are private. – Steve Jessop Mar 2 '11 at 14:37Set_Modefunction may be OK with anm_Modemember variable. The nameSet_Modewill still make sense when there is nom_Modevariable, and e.g. when you change modes by switching to a new PIMPL instance using a class hierarchy of per-mode implementations, or however your mode is handled. "Mode" makes sense as an idea, irrespective of whether it names a member variable. – Steve314 Mar 2 '11 at 14:54