亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

代碼行號如何利用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

屏边| 翼城县| 荆门市| 新宾| 沐川县| 秭归县| 漳平市| 黔南| 屯门区| 璧山县| 佛冈县| 开封县| 额济纳旗| 阿克苏市| 涡阳县| 曲靖市| 新民市| 茶陵县| 莲花县| 屯昌县| 卢湾区| 永兴县| 南郑县| 饶阳县| 通海县| 民乐县| 丰原市| 忻州市| 赤峰市| 鸡西市| 滦平县| 朝阳市| 新源县| 江门市| 精河县| 宜兰市| 平武县| 平昌县| 绥滨县| 名山县| 宁蒗|