Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 高級開發 >> Log.wtf()這個方法你用過嗎

Log.wtf()這個方法你用過嗎

編輯:高級開發

 在android 2.2 API Level為8開始,對於Logcat打印類,提供了一個新的方法為wtf(),平時我們使用為Log.wtf。在android.util.Log類,我們可以看到wtf方法的三種重載版本,這三種版本主要是參數上報告的,不同,一般用於顯示一些不可思議,不應該發生的異常。

static int wtf(String tag, Throwable tr)
What a Terrible Failure: Report an exception that should never happen.

static int wtf(String tag, String msg)
What a Terrible Failure: Report a condition that should never happen.

static int wtf(String tag, String msg, Throwable tr)
What a Terrible Failure: Report an exception that should never happen.

最後android開發網再次提醒,這是2.2 SDK才開始有的方法,如果找不到請檢查你的SDK庫版本。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved