final JLabel j1;
j1 = new JLabel();
add(j1);
setVisible(true);
Thread t = new Thread(new Runnable() {
@Override
public void run(){
Color color = g.getColor();
g.setColor(Color.blue);
j1.setText("哥?还在不?干嘛呢");
g.setColor(color);
try {
Thread.sleep(5000);
}catch (InterruptedException ex) {
}
j1.setText("");
}
});
t.start();
}
拉莫斯之舞
qq_花开花谢_0
相关分类