Home > Java > javaTutorial > How to display reflection frame of StackFrame in Java 9?

How to display reflection frame of StackFrame in Java 9?

WBOY
Release: 2023-09-04 17:09:03
forward
1014 people have browsed it

如何在Java 9中显示StackFrame的反射框架?

A standard API is provided in Java 9, using the java.lang.StackWalker class. This class is designed to be efficient, by allowing delayed access to stack frames. Additionally, there are several options to include implementation and/or reflection frames in the stack trace, which can be useful for debugging purposes. For example, we add the SHOW_REFLECT_FRAMES option when creating a StackWalker instance in order to print the frames of the reflection method.

In the following example, we can display the reflection frame of the StackFrame

Example

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>);
      }
   }
}
Copy after login

Output

<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>
Copy after login

The above is the detailed content of How to display reflection frame of StackFrame in Java 9?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template