程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> java-關於Exception, stack trace的一道問題

java-關於Exception, stack trace的一道問題

編輯:編程綜合問答
關於Exception, stack trace的一道問題

StackTraceElement[ ] tr;
try{
throw new Exception();
} catch(Exception e){
tr = e.getStackTrace();
}
//Do some track trace logging

The stack trace of any call is snagged via an exception so that the caller can be ascertained.
問下面哪個選項正確:

(A) An Exception cannot be instantiated outside of a real exception event
(B) Runtime().getRuntime().getStackTrace() is the proper call for this purpose
(C) StackTraceException is the correct class for this purpose
(D) Throwing the exception is unnecessary for retrieving its stack trace

最佳回答:


(a)錯的,你可以任意實例化一個exception
(b)用Thread.currentThread().getStackTrace()就可以了。
(c)查遍google沒找到這個類
(d)對的,參考b

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved