I have a class which needs some functionality to be encapsulated in some way.

I was thinking of a nested class, and put that functionality plus some states into it. The relation between these two classes is one-to-one.

The problem it for accessing the outer class member variables or methods they should be declared static and I don't want it. Another solution is passing a reference of the outer class to inner class.

What's the best practice for my problem ?

link|improve this question

1  
Can you show us what you have so far? – Andrew Hare Jan 6 '11 at 3:39
Inner class is a kind of data processing class which works with on data of the the outer class. I needs to have access to everything of the outer class but still encapsulated in some way. Maybe defining this functionality as a new class is not a good idea. – Xaqron Jan 6 '11 at 3:47
feedback

3 Answers

While I wouldn't go as far as to say that nested classes are evil, they certainly can be "mischievous", and there are very few problems that a nested class will solve that couldn't be solved differently or more elegantly.

So it really depends on your specific situation, but some things to consider are:

  1. Is the nested class going to be publicly visible? These are unwieldy due to the syntax consumers must use to refer to the nested type: OuterType+InnerType

  2. Source files get larger on average, and are harder to read and reason about (although this may be mitigated by the strategic use of partial classes).

  3. Code Analysis in Visual Studio will complain loudly about public nested classes (they're not considered good form by the framework design guidelines folks), so if you're using FxCop you'll need to make exceptions.

If you post some more specifics, we might be able to provide more detailed guidance.

link|improve this answer
My scenario is very complicated if I bring it here and probably no one will read such a question. I simplified the concept as much as possible. How to encapsulate a set of functionality while they can access all of the original class ? – Xaqron Jan 6 '11 at 4:15
Right, but 'encapsulate a set of functionality' is the essence of object-oriented design, and certainly doesn't require the use of nested classes. In general, the Single Responsibility Principle would suggest that such functionality be 'encapsulated' and 'separate' from other reasons for future change. I think some specifics would really shed light on what you're facing here. – Wayne Jan 6 '11 at 4:19
feedback

We had exactly the same issue about 6 months ago, but for a different reason. We had about 20 'regular' classes and one giant Jupiter sized class that was doing way, way, way too much and needed to be broken down.

We actually need TWO children, in addition to the parent, with both children in a 1-to-1 relationship to the parent.

The first attempt (which did work) used the old-school pattern of passing a reference of 'this' in the constructor of each child, and then using a .Parent method to navigate back up. That was a nightmare due to GC issues, and we looked for a better solution in short time.

The best solution (which is still used today) was to simply accept a reference of the parent's class type in methods of the children which needed to query the parent. This worked fantastically well, the GC liked it, and everything instantiated and freed right as expected. The code is more manageable, and a lot more organized, and we're now really glad we made the investment in time to do it.

So, that would be my recommendation:

Parent
 |
 +-Child1
 |
 +-Child2

With methods of the Child objects accepting a reference to the parent class only in methods that need it.

It's actually a lot like the way that ADO.Net is developed, with independent objects that accept references to each other in methods where they are needed.

link|improve this answer
Thanks very much. I was thinking of passing a reference of parent in constructor. I think GC problem should not happen if both children are finalized then you can dispose parent too. GC do it (disposing) when he want and this is good unless special cases. In that cases you can force GC do it (GC.Collect() but this is performance killer). I'll add another solution as an answer but I don't know if it's a known pattern, best practice... or not ! – Xaqron Jan 6 '11 at 12:51
Actually, passing a reference of the parent in the constructor shouldn't be a problem. The problem was the circular reference when the child stored the reference back to the parent in a .Parent property. We were hoping that the GC would see that the only references to the two objects were each other, but that wasn't the case. Anyway, if you don't do the .Parent property, passing the parent in the constructor should be fine. – FlipScript Jan 6 '11 at 17:48
feedback
up vote 0 down vote accepted
using System;

class OuterType
{
    private static OuterType _instance;

    public OuterType()
    {
        _instance = this;
    }

    private String Message
    {
        get { return "Hello from OuterType"; }
    }

    public void testInnerType()
    {
        InnerType innerType = new InnerType();
        Console.WriteLine(innerType.FormattedOutertMessage);
    }

    private class InnerType
    {
        private readonly OuterType _outerType = _instance;

        public String FormattedOutertMessage
        {
            get { return _outerType.Message.ToUpper(); }
        }
        // InnerType doesn't need to dispose any object of OuterType.
    }
}

Then it works like this:

class Program
{
    static void Main(string[] args)
    {
        OuterType outerType = new OuterType();
        outerType.testInnerType();
        Console.ReadKey();
    }
}

But I'm not sure if this is a good idea or not ?!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.