當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Thread suspend()用法及代碼示例


線程類的 suspend() 方法使線程從運行狀態進入等待狀態。如果您想在某個事件發生時停止線程執行並重新啟動它,則使用此方法。此方法允許線程暫時停止執行。可以使用 resume() 方法恢複掛起的線程。

用法

public final void suspend()

返回

此方法不返回任何值。

異常

SecurityException: 如果當前線程不能修改線程。

示例

public class JavaSuspendExp extends Thread
{  
    public void run()
    {  
        for(int i=1; i<5; i++)
        {  
            try
            {
                // thread to sleep for 500 milliseconds
                 sleep(500);
                 System.out.println(Thread.currentThread().getName());  
            }catch(InterruptedException e){System.out.println(e);}  
            System.out.println(i);  
        }  
    }  
    public static void main(String args[])
    {  
        // creating three threads 
        JavaSuspendExp t1=new JavaSuspendExp ();  
        JavaSuspendExp t2=new JavaSuspendExp (); 
        JavaSuspendExp t3=new JavaSuspendExp (); 
        // call run() method 
        t1.start();
        t2.start();
        // suspend t2 thread 
        t2.suspend(); 
        // call run() method 
        t3.start();
    }  
}

輸出:

Thread-0
1
Thread-2
1
Thread-0
2
Thread-2
2
Thread-0
3
Thread-2
3
Thread-0
4
Thread-2
4






相關用法


注:本文由純淨天空篩選整理自 Java Thread suspend() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。