自定义方法参考

Custom method reference

是否可以在Java中引用带参数的方法? 给我澄清一下: 我想知道是否可以编写这样的代码

public boolean customEquals(ClassType object) {
     Predicate<MethodReference> compare = (getter) -> {
            return this::getter.equals(object::getter);
        };
    return compare.test(MethodReference);
}

其中 ClassType 为 class,其中声明了 customEquals 方法 MethodReference 是一些 link 到 getter

主要思想是我想把方法传递给接口,接口应该为当前对象和参数对象执行这个方法

参考你的观点

The main idea is I want to pass method to the interface, and interface should execute >this method for current object and for parameter object

可以,用反射传递方法执行。请参考以下代码部分:

package org.test;

import java.lang.reflect.Method;

public interface SimpleInterface {
    
    public Object exec(Method method, Object param0, Object param1);

}//interface closing

接口有method,参数为Method

package org.test;

import java.lang.reflect.Method;

public class SimpleClass implements SimpleInterface{
    
    public Integer simpleMethod(Integer a, Integer b) {return a+b;}

    @Override
    public Object exec(Method method, Object param0, Object param1) {
        
        Object retVal=null;
        
        try{retVal=method.invoke(this, param0, param1);}catch(Exception e) {e.printStackTrace();}
    
    return retVal;
    
}//exec closing

}//class收盘

接口实现以及另一个方法,将被传递以供执行。

package org.test;

import java.lang.reflect.Method;

public class SimpleTester {

    public static void main(String[] args) throws Exception{
        
        SimpleClass obj=new SimpleClass();
        Method method=obj.getClass().getMethod("simpleMethod", Integer.class, Integer.class);
        
        Object val=obj.exec(method, new Integer(1), new Integer(2));
        
        System.out.println(val);

    }//main closing

}//class closing

获取方法引用并传递给接口执行的class

以上使用反射实现功能

注意:以上示例是使用 JDK8