다음 예에서는 스택 정보를 얻기 위해 예외 클래스의 printStack() 메서드를 사용하는 방법을 보여줍니다.
/* author by w3cschool.cc Main.java */public class Main{ public static void main (String args[]){ int array[]={20,20,40}; int num1=15,num2=10; int result=10; try{ result = num1/num2; System.out.println("The result is" +result); for(int i =5;i *gt;=0; i--) { System.out.println("The value of array is" +array[i]); } } catch (Exception e) { e.printStackTrace(); } }}
위 코드 실행의 출력 결과는 다음과 같습니다.
The result is1 java.lang.ArrayIndexOutOfBoundsException: 5 at testapp.Main.main(Main.java:28)
위는 Java 예제입니다. - 예외 스택 정보의 내용을 얻으려면 PHP 중국어 웹사이트(m.sbmmt.com)를 참고하세요!