Skip to content

Instantly share code, notes, and snippets.

View hpeng526's full-sized avatar

Peng Huang hpeng526

  • Shenzhen, China
View GitHub Profile
@hpeng526
hpeng526 / SerializedLambdaTest.java
Created April 10, 2019 07:49
SerializedLambda example
public class TestA {
@Greet(value = false)
public static void functionA() {
System.out.println("hello world");
}
public void functionB(HandlerFunction function) throws Exception {
SerializedLambda serializedLambda = function.serialized();
System.out.println(serializedLambda.getImplMethodName());