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 eating rice");

            }

        };

    }

 

}

猜你喜欢

转载自www.cnblogs.com/de-ming/p/12673435.html