public class TestOfPrivate {

public static void test() {
private int a=10;

System.out.println(a);
}
}为什么a不能用private修饰啊?