vote up 5 vote down star

I know I have done this before but I am getting my constructor order of execution in a twist I think....

public class Class1
{
    Class2 _class2;

    public Class1()
    {
        _class2 = new Class2(this);
    }
}

public class Class2 
{
    Class1 _parent; //corrected typo

    public Class2(Class1 parent)
    {
        _parent = parent;
    }
}

trouble is that parent always ends up null.

What's the proper way to do this? (maybe I can blame my slowness on having a cold..)

EDITED TO CORRECT THE TYPO (which isn't the problem in the real code!)

flag

do you perhaps mean "Class1 _parent;" instead of "Class1 parent;"? – ee Apr 9 at 15:29
I had a comment on a deleted answer, so I will throw in my 2 cents here. You're treading on dangerous turf. Since the Class1 instance isn't fully constructed, the Class2 constructor can do some very bad things... imagine this in the Class2 constructor: parent.Child = this; // yikes – Michael Meadows Apr 9 at 15:35
"Works on my machine". However I agree with Michael, using this during construction is a smell to be avoided. – AnthonyWJones Apr 9 at 15:40
I also agree it's horrible - have gone for lazy intialisation as suggested (and as I have done before). – kpollock Apr 9 at 15:43

4 Answers

vote up 5 vote down check

This should, technically, work, provided you change Class2 to include this.parent = parent;

However, I don't recommend this. I would, instead, recommend lazy initializing your class2 instance inside class1. Depending on what all is done in the constructor of Class2, you can potentially lead yourself into nasty situations.

Making a Class2 property on class1 and lazy initializing it would cause Class2 to be constructed after Class1's constructor is completed, not during it's construction, which is most likely less error prone if your classes get more complicated.

link|flag
in the production code it is a property. thanks - thhis is how I havne it in the past.... – kpollock Apr 9 at 15:39
oh my - I really cannot type today, can I :-) – kpollock Apr 9 at 15:39
vote up 11 vote down

You may have mistyped the code, but I think you want this definition for Class2 (notice the this qualifier in your Class2 constructor):

public class Class2 
{
    Class1 parent;

    public Class2(Class1 parent)
    {
        this.parent = parent;
    }
}
link|flag
Another win for "this" – annakata Apr 9 at 15:30
If it were as simple as a typo its not likely to compile. – AnthonyWJones Apr 9 at 15:37
vote up 2 vote down
Class1 parent;
_parent = parent;

_parent is never defined; you misspelled it.

link|flag
vote up 1 vote down

I don't see why this shouldn't work. It works with me.

declared: http://vvcap.net/db/I2OZoapbIRREvQ8ymPym.htp

stepped over: http://vvcap.net/db/ehsYqCY6JByqZQq-RXGp.htp

here's the result: http://vvcap.net/db/ZWjqb_Yv1yAisX0BYUns.htp

link|flag

Your Answer

Get an OpenID
or

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