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
