对于这样一个新手问题,我很抱歉,我正在尝试在两个JText
更改颜色的字段之间设置延迟,即:
box1.setBackground(Color.yellow);
box2.setBackground(Color.red);
我试过使用:
try {
Thread.sleep(1000);
}catch(InterruptedException ex) {
Thread.currentThread().interrupt();
}
然而,当使用这个时,延迟会立即发生,两种颜色只会在延迟后改变。预先感谢您对我的情况的任何启发:)