クラスBが公開できないのはなぜですか?クラスを他のクラスで使用するにはどうすればよいですか?短所の中でそれを定義する方が良いですか?!
// 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();}
}