vote up -1 vote down star

Possible Duplicate:
java : non-static variable cannot be referenced from a static context Error

We cannot access a non static variable in a static method because non-static variable does not exist until and unless an object is created. But then in following code:

class X
{
 int a=10;
 static
 {
   X x1= new X();
   System.out.println(x1.a);
 }
 public static void main(String []args)
 {
   System.out.println(a);
 }
}

Here we have already made an Object of class X1. So why is it giving an error

flag
Dupe: stackoverflow.com/questions/926822/… ... and many more. – Mehrdad Afshari Aug 28 at 6:04
stackoverflow.com/questions/413898/… – Mehrdad Afshari Aug 28 at 6:04
sounds like its grabbed directly from a textbook question – Viktor Sehr Sep 12 at 17:09

closed as exact duplicate by Mehrdad Afshari, mezoid, Jeff Atwood Aug 28 at 9:01

4 Answers

vote up 0 vote down

A method should be static when it does not depend on any instance variable or otherwise said, on the state of the object. For this reason, you can not call a stateful (instance) method from a stateless (static) method.

There may be the case where you have

// This is an instance method 
void a() { b() } 

// This is a static one
static void b() { /* you need to call c() */ } 

// This is an instance method and you decide that you want to call it from b
void c() {...}

This is a case when you want to reconsider whether the b method is worth being static or not or whether it should be refactored in two.

In your case, the error is in calling System.out.println(a) while you should specify THE instance:

class X
{
 int a=10;
 static X x1= new X();
 static
 {
   System.out.println(x1.a);
 }
 public static void main(String []args)
 {
   System.out.println(x1.a);
 }
}

That is because you can have many instances of the same object and the compiler will not guess for you which one's a variable you are referring to.

link|flag
vote up 3 vote down

Because you don’t access a of the instance x1. The main method is static, thus does not belong to an instance, thus you can’t access instance members.

link|flag
Pretty sure you can in C++... but this isn't C++ :) – Mark Aug 28 at 7:36
I’m pretty you can not access instance members without an instance in C++, either. I’m not really proficient with it, though. – Bombe Aug 28 at 7:42
vote up 0 vote down

Static method can access instance members using an instance (object) variable if they are accessible.

Read this thread - http://stackoverflow.com/questions/1184701/static-vs-non-static-method

link|flag
vote up 2 vote down

You've created an instance of X inside the static initializer block.

Later on you try to access the member variable a from another static block, which is not possible. You need to create an instance of X and then try to access X.a

link|flag

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