我正在编写一个程序,它代表一个时钟,并且还有一个文本字段,我用它来实例化:
JTextField tfield = new JTextField();
所以,我希望用户用类似的字符串填充文本字段12 34 56
(这应该在给定时间触发时钟警报)。
我的主要方法执行以下操作:
public static void main(String[] args) {
createAndShowGui();
}
... wherecreateAndShowGui()
创建Panel
and Frame
(plus Textfield
and Buttons
) 并调用我用来显示当前时间的另一个函数。