Skip to content

Instantly share code, notes, and snippets.

View gtrefs's full-sized avatar

Gregor Trefs gtrefs

  • Mannheim, Germany
View GitHub Profile
@raphw
raphw / FieldBenchmark.java
Last active August 20, 2024 10:01
Java MethodHandle and reflection benchmark
package benchmark;
import org.openjdk.jmh.annotations.*;
import java.lang.invoke.MethodHandle;
import java.lang.invoke.MethodHandles;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.util.concurrent.TimeUnit;