JavaSystem.Exit(Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
終止目前執行的 Java 虛擬機。
[Android.Runtime.Register("exit", "(I)V", "")]
public static void Exit (int status);
[<Android.Runtime.Register("exit", "(I)V", "")>]
static member Exit : int -> unit
參數
- status
- Int32
結束狀態。
- 屬性
備註
終止目前執行的 Java 虛擬機。 自變數可作為狀態代碼;依照慣例,非零狀態代碼表示異常終止。
這個方法會呼叫 exit
類別 Runtime
中的方法。 這個方法永遠不會正常傳回。
呼叫 System.exit(n)
實際上相當於呼叫: <blockquote>
Runtime.getRuntime().exit(n)
</blockquote>
的 java.lang.System.exit(int)
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。