Pros and cons of using nested C++ classes and enumerations?

前端 未结 13 2126
悲&欢浪女
悲&欢浪女 2020-11-29 23:43

What are the pros and cons of using nested public C++ classes and enumerations? For example, suppose you have a class called printer, and this class also store

相关标签:
13条回答
  • 2020-11-30 00:09

    Visual Studio 2008 does not seem to be able to provide intellisense for nested classes, so I have switched to the PIMPL idiom in most cases where I used to have a nested class. I always put enums either in the class if it is used only by that class, or outside the class in the same namespace as the class when more than one class uses the enum.

    0 讨论(0)
  • 2020-11-30 00:10

    It seems like you should be using namespaces instead of classes to group like things that are related to each other in this way. One con that I could see in doing nested classes is you end up with a really large source file that could be hard to grok when you are searching for a section.

    0 讨论(0)
  • 2020-11-30 00:10

    For me a big con to having it outside is that it becomes part of the global namespace. If the enum or related class only really applies to the class that it's in, then it makes sense. So in the printer case, everything that includes the printer will know about having full access to the enum PRINTER_TYPE, where it doesn't really need to know about it. I can't say i've ever used an internal class, but for an enum, this seems more logical to keep it inside. As another poster has pointed out, it's also a good idea to to use namespaces to group similar items, since clogging the global namespace can really be a bad thing. I have previously worked on projects which are massive and just bringing up an auto complete list on the global namespace takes 20 minutes. In my opinion nested enums and namespaced classes/structs are probably the cleanest approach.

    0 讨论(0)
  • 2020-11-30 00:11

    Nested classes

    There are several side effects to classes nested inside classes that I usually consider flaws (if not pure antipatterns).

    Let's imagine the following code :

    class A
    {
       public :
          class B { /* etc. */ } ;
    
       // etc.
    } ;
    

    Or even:

    class A
    {
       public :
          class B ;
    
       // etc.
    } ;
    
    class A::B
    {
       public :
    
       // etc.
    } ;
    

    So:

    • Privilegied Access: A::B has privilegied access to all members of A (methods, variables, symbols, etc.), which weakens encapsulation
    • A's scope is candidate for symbol lookup: code from inside B will see all symbols from A as possible candidates for a symbol lookup, which can confuse the code
    • forward-declaration: There is no way to forward-declare A::B without giving a full declaration of A
    • Extensibility: It is impossible to add another class A::C unless you are owner of A
    • Code verbosity: putting classes into classes only makes headers larger. You can still separate this into multiple declarations, but there's no way to use namespace-like aliases, imports or usings.

    As a conclusion, unless exceptions (e.g. the nested class is an intimate part of the nesting class... And even then...), I see no point in nested classes in normal code, as the flaws outweights by magnitudes the perceived advantages.

    Furthermore, it smells as a clumsy attempt to simulate namespacing without using C++ namespaces.

    On the pro-side, you isolate this code, and if private, make it unusable but from the "outside" class...

    Nested enums

    Pros: Everything.

    Con: Nothing.

    The fact is enum items will pollute the global scope:

    // collision
    enum Value { empty = 7, undefined, defined } ;
    enum Glass { empty = 42, half, full } ;
    
    // empty is from Value or Glass?
    

    Ony by putting each enum in a different namespace/class will enable you to avoid this collision:

    namespace Value { enum type { empty = 7, undefined, defined } ; }
    namespace Glass { enum type { empty = 42, half, full } ; }
    
    // Value::type e = Value::empty ;
    // Glass::type f = Glass::empty ;
    

    Note that C++0x defined the class enum:

    enum class Value { empty, undefined, defined } ;
    enum class Glass { empty, half, full } ;
    
    // Value e = Value::empty ;
    // Glass f = Glass::empty ;
    

    exactly for this kind of problems.

    0 讨论(0)
  • 2020-11-30 00:11

    I agree with the posts advocating for embedding your enum in a class but there are cases where it makes more sense to not do that (but please, at least put it in a namespace). If multiple classes are utilizing an enum defined within a different class, then those classes are directly dependent on that other concrete class (that owns the enum). That surely represents a design flaw since that class will be responsible for that enum as well as other responsibilities.

    So, yeah, embed the enum in a class if other code only uses that enum to interface directly with that concrete class. Otherwise, find a better place to keep the enum such as a namespace.

    0 讨论(0)
  • 2020-11-30 00:13

    Remember that you can always promote a nested class to a top-level one later, but you may not be able to do the opposite without breaking existing code. Therefore, my advice would be make it a nested class first, and if it starts to become a problem, make it a top-level class in the next version.

    0 讨论(0)
提交回复
热议问题