icancount.java
来自「书籍"Java_面向事件编程"的附带光盘代码」· Java 代码 · 共 24 行
JAVA
24 行
import objectdraw.*;import java.awt.*; // A program to count as high as you can click.public class ICanCount extends WindowController { // location where count should be displayed private static final Location COUNT_POS = new Location( 100, 100); private int theCount = 1; // how high we have counted private Text countDisplay; // current screen display of count // Create the Text to display the current count public void begin() { countDisplay = new Text( theCount, COUNT_POS, canvas ); } // Increase the count with each click public void onMouseClick(Location point) { theCount = theCount + 1; countDisplay.setText( theCount ); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?