Hi! Why "public int C = A * B;" (non static) can use "A" and "B" (which are static)? Inside this static and non static field, what's the difference between "public int C = A * B;" and "public static int D = B * A;"? I've already read the article about it, but everytime this task appears I see that I didn't really get it...
public static int A = 5;
public static int B = 2;

public int C = A * B;
public static int D = B * A;
Thanks!