Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the following code, it is my assumption that the member variable mBar will only be instantiated upon the first construction of a Foo object... and that this mBar instantiation will be shared with all future Foo objects, but the Bar() constructor will not be called again. Is this accurate?

public class Foo {
  private static Bar mBar = new Bar();

  public Foo() {

  }
share|improve this question
4  
Does your hypothesis match what you observed when you tried it? – Greg Hewgill Jun 30 '11 at 22:28
The mBar instantiation is indeed shared with all Foo objects, but I am unsure whether or not the Bar constructor is called upon each Foo construction. – dfetter88 Jun 30 '11 at 22:30
Given the above example, Bar() will only be invoked once regardless of how many times Foo objects are instantiated. It's not necessarily true that the Bar() constructor won't be called again. It wouldn't be called again by this class (given how the class is written) because the static member variable has already been constructed. But there's nothing that prevents other classes, methods, etc. from instantiating another Bar object and thereby invoking the constructor. – Marvo Jun 30 '11 at 22:31

4 Answers

up vote 6 down vote accepted

The object might actually be constructed WAY before creation of first Foo.. It will be executed when Classloader loads the Foo.class in memory and this can happen pretty much at any time.... Specifically when you load other classes that use Foo class, or when you call a static method of the class....

share|improve this answer

Almost, it will get instantiated when the class Foo is first loaded. So if you call Foo.mBar (if it were public) you would get the bar instance, even though no instances of Foo have been instantiated.

share|improve this answer

Actually, no. Since it is static, you don't need an object to access this variable. Therefore, you can use it without even instantiating an object

share|improve this answer
But it is private. My main purpose in it's static definition is to share it among all Foo objects. – dfetter88 Jun 30 '11 at 22:37
That's fine, but the same concept still applies :) – Shredder Jun 30 '11 at 22:45

Your assumptions are mostly accurate. mBar only gets initialized once for all instances of the class (in the same process). Note that that doesn't stop any other classes from calling the Bar constructor...

Edit: as pointed out in the comments, it won't necessarily be upon the first construction of a Foo object; it's the first executing reference to a Foo object that will cause the classloader to initialize the static members (thereby calling Bar()).

share|improve this answer
Not really.. It will be executed most likely before first Foo object creation. – Jarek Potiuk Jun 30 '11 at 22:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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