admin管理员组

文章数量:1794759

java 停止执行后面代码

java 停止执行后面代码

Java 停止执行后面代码

While working on the threads, sometimes we need to pause the execution of any thread – in that case, we need the concept of pausing the thread execution.

在线程上工作时,有时我们需要暂停任何线程的执行 –在这种情况下,我们需要暂停线程执行的概念。

To pause the execution of a thread, we use "sleep()" method of Thread class.

为了暂停线程的执行 ,我们使用Thread类的“ sleep()”方法。

Syntax:

句法:

Thread.currentThread().sleep(milliseconds);

Example:

例:

Thread.currentThread().sleep(1000); //will pause the thread for 1 second Thread.currentThread().sleep(10000); //will pause the thread for 10 seconds Java代码暂停线程的执行 (Java code to pause the execution of a thread ) //Java code to pause the execution of a thread class ThreadPause { // method to pause the string // here we will pass the time in seconds public void wait(int sec) { try { Thread.currentThread().sleep(sec * 1000); } catch (InterruptedException e) { e.printStackTrace(); } } } // main code public class Main { public static void main(String args[]) { ThreadPause TP = new ThreadPause(); System.out.println("Waiting 1 second..."); TP.wait(1); System.out.println("Done"); System.out.println("Waiting 10 seconds..."); TP.wait(10); System.out.println("Done"); } }

Output

输出量

Waiting 1 second... Done Waiting 10 seconds... Done

翻译自: www.includehelp/java-programs/pause-the-execution.aspx

java 停止执行后面代码

本文标签: 代码java