为什么B类不能公开?我如何在其他类中使用类?在 Cons 中定义它会更好吗?
// public class B { why not?
class B {
int x;
B (int n) {
x=n;
System.out.println("constructor 'B (int n)' called!");
}
}
public class Cons {
public static void main(String[] args) {B b = new B();}
}