This question already has an answer here:
I'm trying to understand about nested classes in C#. I understand that a nested class is a class that is defined within another class, what I don't get is why I would ever need to do this.
|
This question already has an answer here: I'm trying to understand about nested classes in C#. I understand that a nested class is a class that is defined within another class, what I don't get is why I would ever need to do this. |
|||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
A pattern that I particularly like is to combine nested classes with the factory pattern:
By nesting the classes like this, I make it impossible for third parties to create their own subclasses. I have complete control over all the code that runs in any bankaccount object. And all my subclasses can share implementation details via the base class. |
|||||||||||||||
|
|
The purpose is typically just to restrict the scope of the nested class. Nested classes compared to normal classes have the additional possibility of the Basically, if you only need to use this class from within the "parent" class (in terms of scope), then it is usually appropiate to define it as a nested class. If this class might need to be used from without the assembly/library, then it is usually more convenient to the user to define it as a separate (sibling) class, whether or not there is any conceptual relationship between the two classes. Even though it is technically possible to create a |
|||||||||||||||||
|
|
A nested class can have For example, you are implementing the
|
|||||||||||
|
I think you never need to do this. Given a nested class like this ...
... you can always move the inner/nested class to global scope, like this ...
However, when B is only used to help implement A, then making B an inner/nested class has two advantages:
When I say that B can access private members of A, that's assuming that B has a reference to A; which it often does, since nested classes are often declared like this ...
... and constructed from a method of A using code like this ...
You can see an example in Mehrdad's reply. |
|||
|
|
|
There are times when it's useful to implement an interface that will be returned from within the class, but the implementation of that interface should be completely hidden from the outside world. As an example - prior to the addition of yield to C#, one way to implement enumerators was to put the implementation of the enumerator as a private class within a collection. This would provide easy access to the members of the collection, but the outside world would not need/see the details of how this is implemented. |
|||||||
|
|
There is good uses of public nested members too... Nested classes have access to the private members of the outer class. So a scenario where this is the right way would be when creating a Comparer (ie. implementing the IComparer interface). In this example, the FirstNameComparer has access to the private _firstName member, which it wouldn't if the class was a seperate class...
|
||||
|
|
|
When nesting a type (class/enum/interface/struct/delegate) inside an outer class then that outer class effectively takes on the role of a namespace. So the reasons for nesting a type are the same as for using namespaces, be it that it tends to be more fine-grained and is used/needed less often. That fine-grained trait makes privated/protected use more likely, but there exists a case for nested public types too, in that it helps to keep the surrounding namespace clean:
I suspect (but can't find a source) that one objection against (public) nested types could be that they are not CLR compliant. |
||||
|
|
|
Nested classes are very useful for implementing internal details that should not be exposed. If you use Reflector to check classes like Dictionary<Tkey,TValue> or Hashtable you'll find some examples. |
|||
|
|
|
Maybe this is a good example of when to use nested classes?
And:
PS: I've not taken into account which access modifiers should be applied (private, protected, public, internal) |
|||
|
|