JAVA戦車戦プロジェクト練習2日目

1.this.setResizable(false)は、ウィンドウサイズを変更できないことを示します。

2.匿名クラスはメソッドで定義された内部クラスです

public  class Test { 

 
    public  static  void main(String [] args){ 

      
        Person boy = new Person(){ 

            public  void eat(){ 

                System.out.println( "a boy is rice is rice" ); 

            } 

        }; 

    } 

 

}

 

おすすめ

転載: www.cnblogs.com/de-ming/p/12673435.html