mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
8 lines
252 B
Java
8 lines
252 B
Java
import java.lang.invoke.*;
|
|
|
|
public class Main {
|
|
void foo() throws Throwable {
|
|
MethodHandles.Lookup lookup = MethodHandles.lookup();
|
|
lookup.findVirtual(Types.class, "strMethod", MethodType.methodType(String.class, int.class, int.class));
|
|
}
|
|
} |