java带参数的方法的调用_Java方法对具有通用参数的方法的引用

我正在尝试使方法引用具有在类声明中指定的通用参数的方法.

所以我有:

public interface IExecutable

{

void execute(P parameter);

}

public class Parameter implements IParameter {

public void childSpecific() {

...

}

}

public class TestClass {

...

//somewhere in the code

public void foo(Parameter parameter) {

parameter.childSpecific();

}

public void test() {

IExecutable> executable = this::foo; //compilation error

// The type TestClass does not define inner(IParameter) that is applicable here

executable.execute(new Parameter()); //compilation error as well

// The method execute(capture#4-of ?) in the type IExecutable is not applicable for the arguments (Parameter)

}

...

}

具体来说,我在这里不知道可执行文件的具体通用类型.使用

IExecutable = ...

立即解决问题,但这种情况是不可能的.

显然,我做错了.但是如何使其工作呢?

谢谢.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值