public class Timetest extends JFrame implements ActionListener {
JTextArea time1; // 输入开始时间
int msecond = 0, sec = 0, min = 0;// 时间初始值
JButton startButton, stopButton, resetButton; // 定义按钮
Timer testWERT; // 计时器
public Timetest(String str) {
super(str);
Container contentPane = getContentPane();// 创建容器对象
contentPane.setLayout(new GridLayout(2, 1));// 3行1列的网格布局
// 第1行:文本区
time1 = new JTextArea("", 1, 8);
time1.setFont(new Font("隶书", Font.BOLD, 50));
time1 = new JTextArea("00:00:00");
contentPane.add(time1);
// 第二行:按钮行
startButton = new JButton("启动");// 启动按钮
startButton.addActionListener(this);// 启动监听
contentPane.add(startButton);
stopButton = new JButton("暂停");// 暂停按钮
stopButton.addActionListener(this);// 暂停监听
contentPane.add(stopButton);
resetButton = new JButton("复位");// 复位按钮
resetButton.addActionListener(this);// 复位监听
contentPane.add(resetButton);
testWERT = new Timer(10, this);
pack();
setSize(200, 200);
setVisible(true);
}
我想知道
testWERT = new Timer(10, this);
pack(); 这两句是什么意思? 这个数字呢?
计时器中java timer的问题
答案:2 悬赏:0 手机版
解决时间 2021-01-25 15:55
- 提问者网友:niaiwoma
- 2021-01-25 00:33
最佳答案
- 五星知识达人网友:青灯有味
- 2021-01-25 01:49
pack() 使这个窗口大小以适应它的子组件的首选大小和布局。
全部回答
- 1楼网友:鱼芗
- 2021-01-25 02:27
mark mark
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯