Get MethodHandle from lambda object
问题 From java.lang.invoke.LambdaMetafactory: The recommended mechanism for evaluating lambda expressions is to desugar the lambda body to a method, invoke an invokedynamic call site whose static argument list describes the sole method of the functional interface and the desugared implementation method, and returns an object (the lambda object) that implements the target type. And from inspection this is at least what Oracle JDK does. My question: given a lambda object is there a way to find the