我试图在我的入口点中有一个 Java 计时器:
Timer timer = new Timer();
timer.schedule(
new TimerTask() {
public void run() {
//some code
}
}
, 5000);
但是当试图编译这个时,我得到: No source code is available for type java.util.Timer
; 你忘了继承一个必需的模块吗?
我能做些什么来解决这个错误?