Java lambda 可以有一个以上的参数吗?

在 Java 中,是否有可能让一个 lambda 接受多种不同的类型的参数?

即: 单个参数:

    Function  adder = i -> i + 1;
System.out.println (adder.apply (10));

可变参数也可以工作:

    Function  multiAdder = ints -> {
int sum = 0;
for (Integer i : ints) {
sum += i;
}
return sum;
};


//....
System.out.println ((multiAdder.apply (new Integer [] { 1, 2, 3, 4 })));

但我想要一些可以接受许多不同类型的参数,例如:

    Function  myLambda = a , b, c, d->  {
[DO STUFF]
return "done stuff"
};

它的主要用途是在函数中加入小的内联函数以方便使用。

我已经在 Google 中搜索过了,也检查过了 Java 的函数包,但找不到。不知道有没有可能?

170847 次浏览

如果用多个类型参数定义这样的功能接口,这是可能的。没有这样的内置类型。(有一些具有多个参数的有限类型。)

@FunctionalInterface
interface Function6<One, Two, Three, Four, Five, Six> {
public Six apply(One one, Two two, Three three, Four four, Five five);
}


public static void main(String[] args) throws Exception {
Function6<String, Integer, Double, Void, List<Float>, Character> func = (a, b, c, d, e) -> 'z';
}

这里我称它为Function6。名称由您自行决定,只是尽量不要与Java库中的现有名称冲突。


也没有办法定义变量数量的类型参数,如果这是您要问的。


一些语言,如Scala,定义了许多内置的此类类型,类型参数有1,2,3,4,5,6等。

对于带有两个参数的对象,可以使用BiFunction。如果你需要更多,你可以定义自己的函数接口,如下所示:

@FunctionalInterface
public interface FourParameterFunction<T, U, V, W, R> {
public R apply(T t, U u, V v, W w);
}

如果有多个形参,你需要在参数列表周围加上圆括号,如下所示:

FourParameterFunction<String, Integer, Double, Person, String> myLambda = (a, b, c, d) -> {
// do something
return "done something";
};

在这种情况下,你可以使用默认库(java 1.8)中的接口:

java.util.function.BiConsumer
java.util.function.BiFunction

有一个小的(不是最好的)例子默认方法在接口:

default BiFunction<File, String, String> getFolderFileReader() {
return (directory, fileName) -> {
try {
return FileUtils.readFile(directory, fileName);
} catch (IOException e) {
LOG.error("Unable to read file {} in {}.", fileName, directory.getAbsolutePath(), e);
}
return "";
};
}}
另一种选择,不确定这是否适用于你的特定问题,但对某些人来说可能适用,是在java.util.function库中使用UnaryOperator。 它返回你指定的相同类型,所以你把所有的变量放在一个类中,它是一个参数:

public class FunctionsLibraryUse {


public static void main(String[] args){
UnaryOperator<People> personsBirthday = (p) ->{
System.out.println("it's " + p.getName() + " birthday!");
p.setAge(p.getAge() + 1);
return p;
};
People mel = new People();
mel.setName("mel");
mel.setAge(27);
mel = personsBirthday.apply(mel);
System.out.println("he is now : " + mel.getAge());


}
}
class People{
private String name;
private int age;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}

所以你拥有的类,在本例中是Person,可以有许多实例变量,并且不必更改lambda表达式的参数。

对于那些感兴趣的人,我已经写了关于如何使用java.util.function库:http://sysdotoutdotprint.com/index.php/2017/04/28/java-util-function-library/的笔记

你也可以使用jOOL库- https://github.com/jOOQ/jOOL

它已经准备了不同数量参数的功能接口。例如,你可以使用org.jooq.lambda.function.Function3等,从Function0Function16

使用lambda:有三种类型的操作:
1. 接受参数——>消费者
.接受参数——>消费者
.接受参数 2. 测试参数返回boolean——>谓词
3.操作参数和返回值——>函数

Java功能接口,最多两个参数:
单参数接口 < br > 消费者< br > 谓语< br > 函数< br >
双参数接口 < br > BiConsumer < br > BiPredicate < br > BiFunction < br > < / p >

两个人以上,你必须创建如下功能接口(消费者类型):

@FunctionalInterface
public interface FiveParameterConsumer<T, U, V, W, X> {
public void accept(T t, U u, V v, W w, X x);
}

某个lambda函数:

import org.junit.Test;
import java.awt.event.ActionListener;
import java.util.function.Function;


public class TestLambda {


@Test
public void testLambda() {


System.out.println("test some lambda function");


////////////////////////////////////////////
//1-any input | any output:
//lambda define:
Runnable lambda1 = () -> System.out.println("no parameter");
//lambda execute:
lambda1.run();




////////////////////////////////////////////
//2-one input(as ActionEvent) | any output:
//lambda define:
ActionListener lambda2 = (p) -> System.out.println("One parameter as action");
//lambda execute:
lambda2.actionPerformed(null);




////////////////////////////////////////////
//3-one input | by output(as Integer):
//lambda define:
Function<String, Integer> lambda3 = (p1) -> {
System.out.println("one parameters: " + p1);
return 10;
};
//lambda execute:
lambda3.apply("test");




////////////////////////////////////////////
//4-two input | any output
//lambda define:
TwoParameterFunctionWithoutReturn<String, Integer> lambda4 = (p1, p2) -> {
System.out.println("two parameters: " + p1 + ", " + p2);
};
//lambda execute:
lambda4.apply("param1", 10);




////////////////////////////////////////////
//5-two input | by output(as Integer)
//lambda define:
TwoParameterFunctionByReturn<Integer, Integer> lambda5 = (p1, p2) -> {
System.out.println("two parameters: " + p1 + ", " + p2);
return p1 + p2;
};
//lambda execute:
lambda5.apply(10, 20);




////////////////////////////////////////////
//6-three input(Integer,Integer,String) | by output(as Integer)
//lambda define:
ThreeParameterFunctionByReturn<Integer, Integer, Integer> lambda6 = (p1, p2, p3) -> {
System.out.println("three parameters: " + p1 + ", " + p2 + ", " + p3);
return p1 + p2 + p3;
};
//lambda execute:
lambda6.apply(10, 20, 30);


}




@FunctionalInterface
public interface TwoParameterFunctionWithoutReturn<T, U> {
public void apply(T t, U u);
}


@FunctionalInterface
public interface TwoParameterFunctionByReturn<T, U> {
public T apply(T t, U u);
}


@FunctionalInterface
public interface ThreeParameterFunctionByReturn<M, N, O> {
public Integer apply(M m, N n, O o);
}
}

我认为我们可以将map作为参数传递,并将不同的值作为map的元素传递。

Function <Map <String, Object>, Integer> multiAdder = i -> {
String  param1 = (String)i.get("PARAM1");
Integer param2 = (Integer)i.get("PARAM2");
Double  param3 = (Double)i.get("PARAM3");


Integer x = callAnotherMethod(param1, param2, param3);
return x;
};


//....
Map<String, Object> paramsMap = new HashMap<>();
paramsMap.put("PARAM1", "String Val");
paramsMap.put("PARAM2", new Integer(12));
paramsMap.put("PARAM3", new Double(45);
System.out.println ((multiAdder.apply (paramsMap )));