java 递归StackTrace

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 递归StackTrace相关的知识,希望对你有一定的参考价值。

public class recursiveMethod {
// in a recursive method print something only once	
	public static int y = 0;
	public static boolean recursiveMethod(int x) {
		if (x > 4) {
		  return true;
		}
		Exception e = new Exception();
		e.fillInStackTrace();
		if (e.getStackTrace().length == 2) {
		  System.out.println("First Time");
		  // print this statement only the first time
		}
		y++;
		System.out.println(y);
		e.printStackTrace();
		return recursiveMethod(x + 1);
	  }

	  public static void main(String[] args) {
		recursiveMethod(0);
	  }
}

以上是关于java 递归StackTrace的主要内容,如果未能解决你的问题,请参考以下文章

Stacktrace:] 根本原因是 java.lang.NullPointerException

java android stacktrace

java.langThrowable:STACKTRACE

Stacktrace: org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:5(

如何格式化log4j2中的stacktrace?

如何获得修复此错误的 Stacktrace?