vote up -1 vote down star

I have an instance of Class A that I want to refer to in the constructor of multiple instances of B. How can I refer to that particular instance of Class A in each new instance of B?

flag
2  
I'm not sure I follow. You can pass A into B's constructor. Something like A a = new A(); B b = new B(a); B b2 = new B(a); Then both B's are refering to the same A. Is that what you mean? – Matt Nov 8 at 7:21
The spec for the constructor signature requires me not to pass it in. – Barrett Ames Nov 8 at 17:07

1 Answer

vote up 2 vote down check

If you only ever want to have one instance of class A, use a Singleton Pattern. You can then have class B's constructor refer to the singleton. Otherwise, the best way to refer to an object of class A in the constructor of class B is to pass it as an argument.

link|flag
I forgot to add i can't pass it as an argument. Good solution. Thanks. – Barrett Ames Nov 8 at 15:04

Your Answer

Get an OpenID
or

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