vote up 1 vote down star

how to initialize a private static member of a class in java.

trying the following:

public class A {
   private static B b = null;
   public A() {
       if (b == null)
         b = new B();
   }

   void f1() {
         b.func();
   }
}

but on creating a second object of the class A and then calling f1(), i get a null pointer exception.

flag

73% accept rate
you should use a public constructor – Markus Lausberg Oct 29 at 8:49
1  
On which line of code do you get the null pointer exception? – Greg Hewgill Oct 29 at 8:52
1  
Exact duplicate of stackoverflow.com/questions/1642337 – Ferdinand Beyer Oct 29 at 8:53
1  
I think you should correct variables names, the static a is an instance of B and this is confusing, also you should post class B, maybe the NPE gets raised there. – Montecristo Oct 29 at 8:55
1  
@Ferdinand: Let's close the other one. – Aaron Digulla Oct 29 at 8:57
show 5 more comments

3 Answers

vote up 6 vote down check

The preferred ways to initialize static members are either (as mentioned before)

private static final B a = new B(); // consider making it final too

or for more complex initialization code you could use a static initializer block:

private static final B a;

static {
  a = new B();
}
link|flag
i used a static initializer block as the constructor of B throws an exception. still i get the same error. the first call to the library function works but not the second one. – iamrohitbanga Oct 29 at 9:10
As I see it the preferred way of initialising static members depends on the actual situation. Software which creates all static members via this pattern takes a performance hit during application startup. For non-trivial situations I favor a lazy initialisation pattern for just that reason. – rsp Oct 29 at 9:36
@rsp: You're right with your performance concern (to be correct it's not on startup but when class is loaded though - which might be the same but needn't be). I'd still consider this way of initializing static member preferred as doing initialization lazily adds complexity to the code - this should be avoided except for good reason. Performance might be one such reason. – sfussenegger Oct 29 at 10:22
it still doesn't work – iamrohitbanga Oct 29 at 10:22
@iamrohitbanga: consider adding more code and the stacktrace of your NullPointerException to get help. – sfussenegger Oct 29 at 10:24
show 5 more comments
vote up 2 vote down

Your code looks fine. Maybe the error comes somewhere else, like inside a.func() ?

link|flag
vote up 3 vote down

Your code should work. Are you sure you are posting your exact code?


You could also initialize it more directly :

    public class A {

      private static B b = new B();

      A() {
      }

      void f1() {
        b.func();
      }
    }
link|flag

Your Answer

Get an OpenID
or

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