gpt4 book ai didi

Java:像 JavaScript 一样将函数作为参数传递?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:40:43 25 4
gpt4 key购买 nike

<分区>

我正在尝试编写一个函数,因此我可以将函数作为参数传递,例如

public class HashFunction {
private Function f;
public HashFunction(Function f) {
this.f=f;
}
public Integer hash(String s){
return f(s);
}
}

所以我可以写这样的代码

new HashFunction(function(String s){ return s.charAt(0)+0; });

就像在 javascript 中一样。我该怎么做?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com