java简易电子时钟代码(3页).doc
《java简易电子时钟代码(3页).doc》由会员分享,可在线阅读,更多相关《java简易电子时钟代码(3页).doc(3页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、-java简易电子时钟代码-第 3 页import java.awt.*;import java.awt.event.*;import javax.swing.*;import java.util.*;import java.text.SimpleDateFormat;public class ClockJFrame extends JFrame private Date now=new Date(); Panel buttons=new Panel(); Button button_start=new Button(启动); Button button_interrupt=new Butto
2、n(停止); Clock label=new Clock(); public ClockJFrame() /构造方法 super(电子时钟); this.setBounds(300,240,300,120); this.setDefaultCloseOperation(EXIT_ON_CLOSE); this.setLayout(new BorderLayout(); this.getContentPane().add(North,label);/初始化一个容器,用来在容器上添加一个标签 this.getContentPane().add(South,buttons); buttons.set
3、Layout(new FlowLayout(); buttons.add(button_start); buttons.add(button_interrupt); setVisible(true); private class Clock extends Label implements ActionListener,Runnableprivate Thread clocker=null;private Date now=new Date(); public Clock() button_start.addActionListener(this); button_interrupt.addA
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- java 简易 电子 时钟 代码
限制150内