我有这段代码:
try {
Thread.sleep(100);
} catch(InterruptedException ex) {
Thread.currentThread().interrupt();
}
如何将它放在自己的类文件中,以便我可以像“Wait();”这样引用所有代码在主要班级内?
答案 0 :(得分:0)
上课
public class WaitTools {
public static void Wait() {
try {
Thread.sleep(100);
} catch(InterruptedException ex) {
Thread.currentThread().interrupt();
}
}
}
然后使用java静态导入(如果需要)
import static YOURPACKAGE.WaitTools.Wait;
您应该直接使用Wait();
或经典方式
import YOURPACKAGE.WaitTools;
并将其称为WaitTools.Wait();