我正在开发 Gui 程序的一部分,但我被困在这段代码上。当用户单击一个按钮时,它会禁用该按钮(有效),但循环根本不起作用。我使用了一个while循环,只是让它做一个简单的数学方程式。
public void actionPerformed(ActionEvent arg0) {
Enable.setEnabled(false);
Date d = new Date();
int hrs = d.getHours();
int mins = d.getMinutes();
while(1 +1) == 2) {
if(hrs == 17 & mins == 30) {
Function function = new Function();
}
}
有任何想法吗?