Why do classes in C++ have to declare their private functions? Has it actual technical reasons (what is its role at compile time) or is it simply for consistency's sake?
If you think about it, this is similar to declaring some functions From the programmer's point of view, declaring private functions is still not completely useless. Imagine 2 classes, one of which is the As to why exactly C++ was designed in this way, I would first say there is the historical reason: the fact that you can't slice a struct in C, was adopted by C++ so you can't slice a class (and adopted by other languages branched from C++, too). I'd also guess that it's about simplicity: Imagine how difficult it would be to devise a method of compilation in which you can split the class among different header files, let your source files know about it, and prevent others from adding stuff to your class. A final note is that, |
|||||||||||||||
|
|
You have to declare all members in the definition of the class itself so that the compiler knows which functions are allowed to be members. Otherwise, a second programmer could (accidentally?) come along and add members, make mistakes, and violate your object's guarantees, causing undefined behavior and/or random crashes. |
|||||
|
|
There's a combination of concerns, but:
Therefore:
From the POV of practical binary compatibility: as David says in a comment, private Could C++ have been invented differently, to allow the .cpp file to reopen the class and add certain kinds of additional member functions, with the implementation required to arrange that this doesn't break binary compatibility? Could the one definition rule be relaxed, to allow definitions that differ in certain ways? For example, static member functions and non-virtual non-static member functions. Probably yes to both. I don't think there's any technical obstacle, although the current ODR is very strict about what makes a definition "different" (and hence is very generous to implementations in allowing binary incompatibilities between very similar-looking definitions). I think the text to introduce this kind of exception to the rule would be complex. Ultimately it might come down to, "the designers wanted it that way", or it might be that someone tried it and encountered an obstacle that I haven't thought of. |
|||||||||||
|
|
The access level does not affect visibility. Private functions are visible to external code and may be selected by overload resolution (which would then result in an access violoation error):
Imagine the confusion when this works:
But changing it to the first code causes overload resolution to select a different function. And what about the following example?
Or here's another example of this going wrong:
|
|||||||||||
|
|
Private members of a class are still members of the class, so they must be declared, as the implementation of other public members might depend on that private method. Declaring them will allow the compiler to understand a call to that function as a member function call. If you have a method that only is used int the |
|||||
|
|
One reason is that in C++ friends can access your privates. For friends to access them, friends have to know about them. |
|||
|
|
|
There are a couple of reason on why private functions must be declared. First Compile Time Error Checks the point of access modifiers is to catch certain classes (no pun intended) of programming errors at compile time. Private functions are functions that, if someone called them from outside the class, that would be a bug, and you want to know about it as early as possible. Second Casting and Inheritance Taken from the C++ standard: 3 [ Note: A member of a private base class might be inaccessible as an inherited member name, but accessible directly. Because of the rules on pointer conversions (4.10) and explicit casts (5.4), a conversion from a pointer to a derived class to a pointer to an inaccessible base class might be ill-formed if an implicit conversion is used, but well-formed if an explicit cast is used. 3rd Friends Friends show each other there privates. A private method can be call by another class that is a friend. 4th General Sanity and Good Design Ever worked on a project with another 100 developers. Having a standard and a general set of rule helps maintain maintainable. declaring something private has a specific meaning to everyone else in the group. Also this flows into good OO design principles. What to expose and what not |
|||||||||||||||||
|

privatefor those functions? – GManNickG Jul 17 '12 at 15:17privateandvirtualare orthogonal concepts. The fact that a function isprivatedoes not imply that it is notvirtual(as a matter of fact there is a whole idiom around having onlyprivatevirtualandpublicnon-virtual member functions), so yes, the presence affect the vtable. – David Rodríguez - dribeas Jul 17 '12 at 15:29