I am using an enum for a class I am working on and I am using Google to look for examples to make sure I am using the enum correctly. I went to several sites including the MSDN site and enums are listed under public instead of private. I always thought that data members were private. Am I off base and if so why?
|
These enums are probably used in the class interface, right? Otherwise, it would indeed be cleaner to keep them |
|||
|
|
|
An enum is a type, not a data member. You should make it public if users of the class need to know about it; otherwise, make it private. A typical situation where users need to know about it is when it's used as the type of an argument to a public member function. |
|||
|
|
|
Enums are not data members, they are constants/types. If you do not make them public, then other classes cannot interact with the class defining
|
|||
|
|
|
Public
Output on Ideone. The reason that |
||||
|
|