Answers:
您前面有很多阅读材料。从编译器错误到异常处理,线程和线程中断。但这将满足您的要求:
try {
Thread.sleep(1000); //1000 milliseconds is one second.
} catch(InterruptedException ex) {
Thread.currentThread().interrupt();
}
正如其他用户所说的那样,您应该在通话中加上一个try{...} catch{...}
方块。但是自从Java 1.5发行以来,就有TimeUnit类与Thread.sleep(millis)的功能相同,但是更加方便。您可以选择时间单位进行睡眠操作。
try {
TimeUnit.NANOSECONDS.sleep(100);
TimeUnit.MICROSECONDS.sleep(100);
TimeUnit.MILLISECONDS.sleep(100);
TimeUnit.SECONDS.sleep(100);
TimeUnit.MINUTES.sleep(100);
TimeUnit.HOURS.sleep(100);
TimeUnit.DAYS.sleep(100);
} catch (InterruptedException e) {
//Handle exception
}
它还具有其他方法: TimeUnit Oracle文档
try-catch
异常处理来包围这些调用。
看看这篇出色的简短文章,了解如何正确执行此操作。
本质上:抓住InterruptedException
。请记住,您必须添加此catch-block。帖子进一步解释了这一点。
当使用Android(这是我使用Java的唯一时间)时,我建议使用处理程序,而不要使线程进入睡眠状态。
final Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
Log.i(TAG, "I've waited for two hole seconds to show this!");
}
}, 2000);
参考:http : //developer.android.com/reference/android/os/Handler.html
尝试这个:
try{
Thread.sleep(100);
}catch(Exception e)
{
System.out.println("Exception caught");
}
Exception
Java 并不是坏习惯吗?
我为Java程序增加延迟的方法。
public void pause1(long sleeptime) {
try {
Thread.sleep(sleeptime);
} catch (InterruptedException ex) {
//ToCatchOrNot
}
}
public void pause2(long sleeptime) {
Object obj = new Object();
if (sleeptime > 0) {
synchronized (obj) {
try {
obj.wait(sleeptime);
} catch (InterruptedException ex) {
//ToCatchOrNot
}
}
}
}
public void pause3(long sleeptime) {
expectedtime = System.currentTimeMillis() + sleeptime;
while (System.currentTimeMillis() < expectedtime) {
//Empty Loop
}
}
这用于顺序延迟,但对于循环延迟,请参阅Java Delay / Wait。
public static void main(String[] args) throws InterruptedException {
//type code
short z=1000;
Thread.sleep(z);/*will provide 1 second delay. alter data type of z or value of z for longer delays required */
//type code
}
例如:-
class TypeCasting {
public static void main(String[] args) throws InterruptedException {
short f = 1;
int a = 123687889;
short b = 2;
long c = 4567;
long d=45;
short z=1000;
System.out.println("Value of a,b and c are\n" + a + "\n" + b + "\n" + c + "respectively");
c = a;
b = (short) c;
System.out.println("Typecasting...........");
Thread.sleep(z);
System.out.println("Value of B after Typecasting" + b);
System.out.println("Value of A is" + a);
}
}
一种更简单的等待方式是使用System.currentTimeMillis()
,它返回自UTC 1970年1月1日午夜以来的毫秒数。例如,等待5秒:
public static void main(String[] args) {
//some code
long original = System.currentTimeMillis();
while (true) {
if (System.currentTimeMillis - original >= 5000) {
break;
}
}
//more code after waiting
}
这样,您就不必为线程和异常而烦恼了。希望这可以帮助!
用途java.util.concurrent.TimeUnit
:
TimeUnit.SECONDS.sleep(1);
睡一秒钟或
TimeUnit.MINUTES.sleep(1);
睡一分钟。
由于这是一个循环,因此存在一个固有的问题-漂移。每次您运行代码然后进入睡眠状态时,您运行的每一秒都会有点漂移。如果这是一个问题,请不要使用sleep
。
此外,sleep
在控制方面不是很灵活。
对于每秒或延迟一秒运行一次任务,我强烈建议使用[ ScheduledExecutorService
] [1]和[ scheduleAtFixedRate
] [2]或[ scheduleWithFixedDelay
] [3]。
要myTask
每秒运行一次该方法(Java 8):
public static void main(String[] args) {
final ScheduledExecutorService executorService = Executors.newSingleThreadScheduledExecutor();
executorService.scheduleAtFixedRate(App::myTask, 0, 1, TimeUnit.SECONDS);
}
private static void myTask() {
System.out.println("Running");
}
Thread.sleep()
对于初学者来说很简单,并且可能适合于单元测试和概念验证。
但是,请不要使用sleep()
用于生产代码。最终sleep()
可能会严重咬你。
多线程/多核Java应用程序使用“线程等待”概念的最佳实践。等待释放线程持有的所有锁和监视器,这使其他线程可以获取那些监视器并在线程安静地睡眠时继续运行。
下面的代码演示了该技术:
import java.util.concurrent.TimeUnit;
public class DelaySample {
public static void main(String[] args) {
DelayUtil d = new DelayUtil();
System.out.println("started:"+ new Date());
d.delay(500);
System.out.println("half second after:"+ new Date());
d.delay(1, TimeUnit.MINUTES);
System.out.println("1 minute after:"+ new Date());
}
}
DelayUtil
实施:
import java.util.concurrent.TimeUnit;
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.ReentrantLock;
public class DelayUtil {
/**
* Delays the current thread execution.
* The thread loses ownership of any monitors.
* Quits immediately if the thread is interrupted
*
* @param durationInMillis the time duration in milliseconds
*/
public void delay(final long durationInMillis) {
delay(durationInMillis, TimeUnit.MILLISECONDS);
}
/**
* @param duration the time duration in the given {@code sourceUnit}
* @param unit
*/
public void delay(final long duration, final TimeUnit unit) {
long currentTime = System.currentTimeMillis();
long deadline = currentTime+unit.toMillis(duration);
ReentrantLock lock = new ReentrantLock();
Condition waitCondition = lock.newCondition();
while ((deadline-currentTime)>0) {
try {
lock.lockInterruptibly();
waitCondition.await(deadline-currentTime, TimeUnit.MILLISECONDS);
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
return;
} finally {
lock.unlock();
}
currentTime = System.currentTimeMillis();
}
}
}
另外,如果您不想处理线程,请尝试以下方法:
public static void pause(int seconds){
Date start = new Date();
Date end = new Date();
while(end.getTime() - start.getTime() < seconds * 1000){
end = new Date();
}
}
它在您调用时开始,并在经过秒数后结束。