Java StackTraceElement getMethodName()方法

java.lang.StackTraceElement.getMethodName() 方法返回一个包含由该堆栈跟踪元素所表示的执行点的方法的名称。

1 语法

public String getMethodName()

2 参数

3 返回值

此方法返回一个包含由该堆栈跟踪元素所表示的执行点的方法的名称。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StackTraceElement getMethodName()方法
 */
import java.lang.*;

public class StackTraceElementDemo {

   public static void main(String[] args) {

      function1();
   }
 
   public static void function1()
   {
      new StackTraceElementDemo().function2();
   }
 
   public void function2() 
   {
      int i;
      System.out.println("method name : ");

      // print stack trace
      for( i = 1; i <= 3; i++ ) {
         System.out.println(Thread.currentThread().getStackTrace()[i].
         getMethodName());
      }
   }
} 

输出结果为:

method name :
function2
function1
main

 

热门文章

优秀文章