class A
{
static final int i=10;
static
{
System.out.println("Static A");
}
}
public class B {
public static void main(String[] args)
{
System.out.println(A.i);
}
}
In the above code snippet,wheather class A is loading into the memory or not? If class A is loading into the memory why SIB is not executing?If class A is not loading into memory how we able to access its member in class B.