91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

代碼行號如何利用Java獲取

發布時間:2020-12-02 15:36:19 來源:億速云 閱讀:243 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關代碼行號如何利用Java獲取,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

具體實現代碼:

/**
*
*/
package leo.demo.training;
/**
* Get current java file name and current code line number
* @author Leo Xie
*/
public class CurrentLine {
  /**
  * @param args
  */
  public static void main(String[] args) {
    StackTraceElement ste1 = null;
    // get current thread and its related stack trace
    StackTraceElement[] steArray = Thread.currentThread().getStackTrace();
    int steArrayLength = steArray.length;
    String s = null;
    // output all related info of the existing stack traces
    if(steArrayLength==0) {
      System.err.println("No Stack Trace.");
    } else {
      for (int i=0; i<steArrayLength; i++) {
        System.out.println("Stack Trace-" + i);
        ste1 = steArray[i];
        s = ste1.getFileName() + ": Line " + ste1.getLineNumber();
        System.out.println(s);
      }
    }
    // the following code segment will output the line number of the "new " clause
    // that's to say the line number of "StackTraceElement ste2 = new Throwable().getStackTrace()[0];"
    StackTraceElement ste2 = new Throwable().getStackTrace()[0];
    System.out.println(ste2.getFileName() + ": Line " + ste2.getLineNumber());
    // the following clause will output the line number in the external method "getLineInfo()"
    System.out.println(getLineInfo());
    // the following clause will output its current line number
    System.out.println(getLineInfo(new Throwable().getStackTrace()[0]));
  }
  /**
  * return current java file name and code line number
  * @return String
  */
  public static String getLineInfo() {
    StackTraceElement ste3 = new Throwable().getStackTrace()[0];
    return (ste3.getFileName() + ": Line " + ste3.getLineNumber());
  }
  /**
  * return current java file name and code line name
  * @return String
  */
  public static String getLineInfo(StackTraceElement ste4) {
    return (ste4.getFileName() + ": Line " + (ste4.getLineNumber()));
  }
}

關于代碼行號如何利用Java獲取就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

蓬溪县| 绥中县| 蕉岭县| 桑植县| 伊宁市| 忻州市| 东光县| 福州市| 芜湖县| 新邵县| 江都市| 亚东县| 大名县| 肥城市| 邯郸市| 肥西县| 定兴县| 江阴市| 昌邑市| 泗阳县| 镇巴县| 施甸县| 江油市| 乌鲁木齐县| 壤塘县| 乌什县| 昌吉市| 井陉县| 尉犁县| 中阳县| 烟台市| 杭州市| 台东县| 诸城市| 丰镇市| 沐川县| 乌拉特中旗| 疏勒县| 黄浦区| 城口县| 宕昌县|