選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

PrivateFields.java 244B

12345678910111213
  1. public class PrivateFields {
  2. public static void main(String[] args) {
  3. }
  4. }
  5. class Outer {
  6. private static int one = 1;
  7. static class Inner extends Outer{
  8. private static int two = 2;
  9. int m() { return one; }
  10. }
  11. }