You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package a;
class A{
// 只有在包a下的类才能访问变量a;
public static final String a = 'a';
}
package b;
public class B{
public static void main(String[] args) {
//此处因为类的访问限制,是无法获取到A类的。
A.a;
}
}