Search code examples
javajava-7methodhandle

Get method handle for overloaded method


Is it possible to look up a method handle for a overloaded method in Java 7?


Solution

  • You can get a MethodHandle to anything you can get a Method for using MethodHandles.Lookup.unreflect().