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?
|
|
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. |
||
|

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