Skip to content

Java

认识

接口多态以接口作为类型, 接收它的实现类对象, 从而实现多态性.


事件

java

JButton jButton = new JButton("点我啊");
jButton.setSize(100, 100);
jButton.addActionListener();

Released under the MIT License.