1.java连连看里设置150秒倒计时,连连连重行开始游戏时时间再次从150秒开始倒计时的码连代码怎么写,急!代码量推源码教程!连连连!码连微信文字刷屏源码!代码理财平台源码开发qq!连连连!码连!代码
java连连看里设置150秒倒计时,连连连重行开始游戏时时间再次从150秒开始倒计时的码连代码怎么写,急!代码!连连连ts播放器源码!码连!代码自动引流强制分享源码!!!
参考一下吧。import java.awt.FlowLayout;import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class Program {
static int seconds = ;
private TimeThread tt = null;
private boolean ttFlag = false;
private void init() {
final JLabel tip = new JLabel();
final JButton start = new JButton("开始");
final JButton end = new JButton("结束");
JFrame f = new JFrame();
f.setLayout(new FlowLayout(5));
f.add(tip);
f.add(start);
f.add(end);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setVisible(true);
f.setSize(, );
f.setLocationRelativeTo(null);
start.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
start.setEnabled(false);
tip.setFont(new Font("宋体",Font.BOLD,));
ttFlag = true;
tt = new TimeThread(tip);
tt.start();
}
});
end.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
start.setEnabled(true);
tip.setText("");
Program.seconds = ;
ttFlag = false;
}
});
}
/
*** @param args
*/
public static void main(String[] args) {
new Program().init();
}
class TimeThread extends Thread {
private JLabel tip;
TimeThread(JLabel tip) {
this.tip = tip;
}
@Override
public void run() {
int seconds = Program.seconds;
tip.setText(seconds+"");
while (seconds-- > 0 && ttFlag) {
tip.setText(seconds+"");
try {
Thread.sleep();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
};
}