vote up 1 vote down star

The current class library I am working on will have a base class (Field) with over 50 specific "field" types which will inherit from "Field" and nested for maintain readability. For example...

abstract class Field
{
    public int Length { get; set; }

    public class FieldA : Field
    {
        public static void DoSomething()
        {
            Console.WriteLine("Did something.");
        }
    }
}

So far everything looks good and I can use the code as shown:

class Program
{
    static void Main(string[] args)
    {
        Field.FieldA.DoSomething();
    }
}

However, why does this work as well? What is going on here that allows the compiler / IDE intellisense to continue to chain these "FieldA"'s?

class Program
{
    static void Main(string[] args)
    {
        Field.FieldA.FieldA.FieldA.FieldA.FieldA.FieldA.FieldA.DoSomething();
    }
}

It's not application breaking by any means, but thought it was peculiar. Does the same thing in Boo (which is the actual language being used for the library).

flag

Lol, that's actually pretty cool. Had to test it myself to believe it :p – Stormenet Jan 18 '09 at 21:32
Your approach is a reasonable one, especially if you want to control who can derive: make the base constructor private, and only nested types can derive from it. I use something similar when I'm trying to simulate 'enum' behaviors with richer OO semantics. – Jay Bazuzi Jan 18 '09 at 21:36
reminds me of "moon instructs a student" – annakata Jan 18 '09 at 21:39
Obvious logic oversight on my part. Thanks for the replies. – James Atkinson Jan 18 '09 at 21:40
An internal constructor would also limit who can inherit from it, too... – Rowland Shaw Jan 18 '09 at 21:57

3 Answers

vote up 4 vote down check

Sounds like you wanted something like:

abstract class Field
{
    public int Length { get; set; }
}

public class FieldA : Field
{
    public static void DoSomething()
    {
        Console.WriteLine("Did something.");
    }
}

Otherwise you're defining a base class with an inner class in it, which inheritorrs will also get. So when you inherit from the outer class to make the inner class, you're starting a loop.

link|flag
Thats what I was afraid was happening. I guess Ill have to find another way of nesting my classes. Thanks for the reply. – James Atkinson Jan 18 '09 at 21:36
vote up 2 vote down
  1. Field has a public nested-class named FieldA
  2. FieldA inherits from Field
  3. thus you can always access FieldA from FieldA.

The reference isn't creating infinite chains, it is simply pointing to the same class. (some test code)

When you access FieldA.FieldA, the latter FieldA is accessible due to the fact that the former FieldA is an instance of Field so the latter FieldA actually access Field.FieldA

link|flag
vote up 1 vote down

FieldA inherits a reference to class FieldA which inherits a reference to class FieldA which inherits a reference to class FieldA which inherits a reference to class FieldA which inherits a reference to class FieldA which inherits a reference to class FieldA which inherits a reference to class FieldA which...

It works because that's what you told it to do.

link|flag

Your Answer

Get an OpenID
or

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