은 java.lang.StackWalker 클래스를 사용하여 Java 9의 표준 API를 제공합니다. 이 클래스는 스택 프레임에 대한 지연 액세스를 허용하여 효율적으로 설계되었습니다. 또한 스택 추적에 구현 및/또는 반사 프레임을 포함하는 몇 가지 옵션이 있으며 이는 디버깅 목적에 매우 유용할 수 있습니다. 예를 들어, 반사 메서드의 프레임을 인쇄하기 위해 StackWalker 인스턴스를 생성할 때 SHOW_REFLECT_FRAMES 옵션을 추가합니다.
아래 예에서는 StackFrame의 반사 프레임을 표시할 수 있습니다.
import java.lang.StackWalker.Option; import java.lang.StackWalker.StackFrame; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.List; import java.util.stream.Collectors; public class ReflectionFrameTest { public static void main(String args[]) throws NoSuchMethodException, SecurityException, IllegalAccessException, IllegalArgumentException, InvocationTargetException { <strong>Method </strong>test1Method = Test1.class.<strong>getDeclaredMethod</strong>("test1", (Class<!--?-->[]) null); test1Method.<strong>invoke</strong>(null, (Object[]) null); } } class Test1 { protected static void test1() { Test2.test2(); } } class Test2 { protected static void test2() { <strong>// show reflection methods</strong> <strong>List<StackFrame></strong> stack = <strong>StackWalker.getInstance</strong>(Option.<strong>SHOW_REFLECT_FRAMES</strong>).walk((s) -> s.collect(Collectors.toList())); for(<strong>StackFrame </strong>frame : stack) { System.out.println(frame.<strong>getClassName()</strong> + " " + frame.<strong>getLineNumber()</strong> + " " + frame.<strong>getMethodName()</strong>); } } }
<strong>Test2 22 test2 Test1 16 test1 jdk.internal.reflect.NativeMethodAccessorImpl -2 invoke0 jdk.internal.reflect.NativeMethodAccessorImpl 62 invoke jdk.internal.reflect.DelegatingMethodAccessorImpl 43 invoke java.lang.reflect.Method 564 invoke ReflectionFrameTest 11 main</strong>
위 내용은 Java 9에서 StackFrame의 반사 프레임을 표시하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!