输出当前栈的调用层次

public static void call()
{
    for(StackTraceElement o:Thread.currentThread().getStackTrace())
    {
        System.out.println(o.getClassName()+":"+o.getMethodName()+":"
              +o.getLineNumber());
    } 
}


你可能感兴趣的:(java)