のは、我々は次のコードを持っていると仮定してみましょう:クラスのプライベートメンバー
public class TestScope {
private int a = 1;
public static void main(String[] args) {
TestScope ts = new TestScope();
ts.a = 6;
System.out.println(ts.a);
}
}
ラインでなぜ:ts.a = 6;
私はプライベート変数a
へのアクセスを得ることができますか? プライベートメンバーには外部からアクセスできないと思いました。私はこの例を賞賛していません。
[なぜmainメソッドからプライベート変数にアクセスできますか?](http://stackoverflow.com/questions/4707504/why-can-i-access-a-private-variable-from-main-メソッド) – cdhowie