public class Test { <br /> public int aMethod() { <br /> static int i = 0; <br /> i++; <br /> return i; <br /> } <br /> public static void main (String args[]) { <br /> Test test = new Test(); <br /> test.aMethod(); <br /> int j = test.aMethod(); <br /> System.out.println(j); <br /> } <br /> } <br /> What is the result?()  
A、 0
B、 1
C、 2
D、 Compilation fails.