如何让Java延迟几秒钟?
嘿,我有这个代码。我想将程序延迟几秒钟并显示“正在扫描...”
这是我所拥有的。这可以编译,但不会延迟任何内容
if (i==1){
try {
Thread.sleep(1);
} catch (InterruptedException ie)
{
System.out.println("Scanning...");
}
}
提前感谢我有int i = 1之前显然