admin管理员组文章数量:1794759
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 停止执行后面代码 内容由林淑君副主任自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.xiehuijuan.com/baike/1686845144a109466.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论