package com.one;
import static com.two.Two.*;
public class One {
int x1 = Two.tiger; //1
int x2 = tiger; //2
int x3 = com.two.Two.tiger; //3
int x4 = two.Two.tiger; //4
}
Second file:
package com.two;
public class Two {
public static int tiger = 1414;
}
Login in to like
Login in to comment