匿名对象是实例化的对象,但不存储在引用变量中。
btn.setOnAction(new EventHandler() { public void handle(ActionEvent event) { System.out.println(“Hello World!”); } });
0