vote up 1 vote down star

My problem here is that I would like to pass an object to a derived class, but it must be done before the base class constructor, since the base class will immediately call the derived class's Start() method that uses the object.

Here's an excerpt from the base class, (renamed from BarcodeScanner for convenience).

public abstract class MyBase
{    
    public MyBase()
    {
        if (Initialize())
            this.Start();
    }

    public abstract bool Initialize();
    public abstract void Start();
}

Here's the derived class that I'm creating.

class MyDerived : MyBase
{
    private string sampleObject;

    public MyDerived (string initObject)
    {
        sampleObject = initObject;
    }

    public override bool Initialize() 
    { 
        return GetDevice();
    }
    public override void Start() 
    { 
        Console.WriteLine("Processing " + sampleObject.ToString()); 
    }
}

I doubt you can make C# execute a derived constructor before the base constructor; so I'm really just looking for a solution to pass an object to the derived class before the object is used.

I've gotten around this by putting the Initialize/Start if block inside the MyDerived constructor. However, there are other classes deriving from the base class; so I ended up having to repeat this block of Initialize/Start code in every derived class. I'd like to see an alternative to modifying the base class.

flag

3 Answers

vote up 3 vote down check

What you are trying to do is impossible in C#. A constructor in a base class must be run before the constructor of any derived class otherwise there would be potential for corrupt object state. A child object must be able to assume that its base is fully constructed and available.

link|flag
Well, it is possible to create empty override Initialize/Start methods, and move those code into derivedInitialize/derivedStart methods, and then in the derived constructor, call if (derivedInitialize()) derivedStart(). There may be no elegant solutions, but there are still other ways. – James Apr 9 at 20:12
vote up 11 vote down

IMHO your design is wrong. You shouldn't start the process from within the constructor. Your consuming code should explicitly call the Start() method when required.

link|flag
+1 For explict calling of "Start()". – Andrew Hare Apr 9 at 17:29
+1. This guy is correct, you need .Start() / .Initialise(). Don't call virtual methods in constructors. – Quibblesome Apr 9 at 17:32
+1. C++ restricts virtual calls from constructors for a reason. – Anton Tykhyy Apr 9 at 17:39
I wholeheartedly agree that the design from MSDN isn't perfect, but it's been already implemented and it works well with the derived classes that don't need a passed in object. – James Apr 9 at 20:01
MSDN is advocating such a design? Can you post a link please? – AdamRalph Apr 9 at 23:41
show 2 more comments
vote up 0 vote down

I would rework your design so that Initialize (and potentially Start() - though I'd normally have this be a public method that's called by the user) are called after construction.

If you're making a BarcodeScanner, you could do this the first time you go to scan. Just lazy-initialize your members using the data from the derived class.

This will work around your issue, with no real change in usage from the user.

link|flag
The scan is initiated asynchronously by the device, so you can't initialize based on scan start. In hindsight, Microsoft should've renamed their Start() method to be Ready() method. Since the Start() method only readies the scanner, but doesn't actually start the scan. – James Apr 9 at 20:00

Your Answer

Get an OpenID
or

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