为什么我需要一个功能接口来使用 lambda?
Why do I need a functional Interface to work with lambdas?
我认为这个问题已经存在于某处,但我找不到它。
我不明白,为什么需要一个函数式接口来使用 lambda。考虑以下示例:
public class Test {
public static void main(String...args) {
TestInterface i = () -> System.out.println("Hans");
// i = (String a) -> System.out.println(a);
i.hans();
// i.hans("Hello");
}
}
public interface TestInterface {
public void hans();
// public void hans(String a);
}
这没有问题,但如果您取消注释注释行,则不会。为什么?以我的理解,编译器应该能够区分这两种方法,因为它们具有不同的输入参数。为什么我需要一个功能接口并炸毁我的代码?
编辑:链接的副本没有回答我的问题,因为我问的是不同的方法参数。但我在这里得到了一些非常有用的答案,感谢所有帮助过的人! :)
EDIT2:抱歉,我显然不是母语人士,但准确地说:
public interface TestInterface {
public void hans(); //has no input parameters</br>
public void hans(String a); //has 1 input parameter, type String</br>
public void hans(String a, int b); //has 2 input parameters, 1. type = String, 2. type = int</br>
public void hans(int a, int b); //has also 2 input parameters, but not the same and a different order than `hans(String a, int a);`, so you could distinguish both
}
public class Test {
public static void main(String...args) {
TestInterface i = () -> System.out.println("Hans");
i = (String a) -> System.out.println(a);
i = (String a, int b) -> System.out.println(a + b);
i = (int a, int b) -> System.out.println(a);
i.hans(2, 3); //Which method would be called? Of course the one that would take 2 integer arguments. :)
}
}
我要问的只是论据。方法名称无关紧要,但每个方法都采用不同参数的唯一顺序,因此,Oracle 可以实现此功能,而不是只使每个 "Lambda-Interface".
的方法成为可能。
您不必为了创建 lambda 函数而创建功能接口。该接口允许您为将来的函数调用创建实例。
在您的情况下,您可以使用现有的接口 Runable
Runnable r = () -> System.out.println("Hans");
然后调用
r.run();
您可以将 lambda ->
视为以下的简写形式:
Runnable r = new Runnable() {
void run() {
System.out.println("Hans");`
}
}
使用 lambda,您不需要在上例中创建的匿名 class。
但这有一些限制,为了弄清楚应该调用什么方法,与lambdas一起使用的接口必须是SAM(单一抽象方法)。那么我们只有一种方法。
有关更详细的解释,请阅读:
Introduction to Functional Interfaces – A Concept Recreated in Java 8
当你写的时候:
TestInterface i = () -> System.out.println("Hans");
您实现了 TestInterface
的 void hans()
方法。
如果您可以将 lambda 表达式分配给具有多个抽象方法的接口(即非功能接口),则 lambda 表达式只能实现其中一个方法,而其他方法未实现。
你不能通过将两个具有不同签名的 lambda 表达式分配给同一个变量来解决它(就像你不能将两个对象的引用分配给一个变量并期望该变量同时引用两个对象一样).
它们必须只包含一种方法的最重要原因是,否则很容易造成混淆。如果接口中允许多个方法,如果参数列表相同,lambda 应该选择哪个方法?
interface TestInterface {
void first();
void second(); // this is only distinguished from first() by method name
String third(); // maybe you could say in this instance "well the return type is different"
Object fourth(); // but a String is an Object, too !
}
void test() {
// which method are you implementing, first or second ?
TestInterface a = () -> System.out.println("Ido mein ado mein");
// which method are you implementing, third or fourth ?
TestInterface b = () -> "Ido mein ado mein";
}
您似乎在寻找 匿名 类。以下代码有效:
public class Test {
public static void main(String...args) {
TestInterface i = new TestInterface() {
public void hans() {
System.out.println("Hans");
}
public void hans(String a) {
System.out.println(a);
}
};
i.hans();
i.hans("Hello");
}
}
public interface TestInterface {
public void hans();
public void hans(String a);
}
Lambda 表达式(大部分)是一种仅使用一种方法编写匿名 类 的较短方式。 (同样,匿名 类 是 shorthand for inner 类,你只在一个地方使用)
根据java specs,函数式接口只能包含一个抽象方法。
lambda 表达式当然可以像您注释的代码那样一次性使用,但是当涉及到将 lambda 表达式作为参数传递给模拟函数回调时,函数式接口是必须的,因为在这种情况下,变量数据类型是功能界面。
例如Runnable
是内置函数式接口:
public interface Runnable() {
public void run();
}
用法如下:
public class LambdaTest {
// data type of parameter 'task' is functional interface 'Runnable'
static void doSeveralTimes(Runnable task, int repeat) {
for (int i = 0; i < repeat; i++) {
task.run();
}
}
public static void main(String[] args) {
// one-time lambda
doSeveralTimes(() -> {
System.out.println("one-time lambda");
}, 3);
// lambda as variable
Runnable test;
test = () -> {
System.out.println("lambda as variable");
};
doSeveralTimes(test, 3);
}
}
结果是:
one-time lambda
one-time lambda
one-time lambda
lambda as variable
lambda as variable
lambda as variable
lambda 表达式不过是定义功能接口实现的快捷方式。
相当于一个函数式接口实现的实例。
在java实现接口时,需要实现其所有抽象方法(否则实现class就必须是接口)
Java 编译器在内部使用 class 定义和方法扩展 lambda 表达式,以及实例化此 class 的语句。目前 java 没有 support/provide 将 1 个以上的 lambda 与 1 个接口相关联的方法。
public class Test {
public static void main(String...args) {
TestInterface i = () -> System.out.println("Hans"); // this will not compile as the implementation for public void hans(String a); can not be provided/is not found
//i = (String a) -> System.out.println(a); //this can not add an implementation for 2nd method to i after compilation of 1st lambda
}
}
public interface TestInterface {
public void hans();
public void hans(String a);
}
这就是 java 中的 lambda 仅适用于具有一种方法或功能接口的接口的原因。
我认为这个问题已经存在于某处,但我找不到它。
我不明白,为什么需要一个函数式接口来使用 lambda。考虑以下示例:
public class Test {
public static void main(String...args) {
TestInterface i = () -> System.out.println("Hans");
// i = (String a) -> System.out.println(a);
i.hans();
// i.hans("Hello");
}
}
public interface TestInterface {
public void hans();
// public void hans(String a);
}
这没有问题,但如果您取消注释注释行,则不会。为什么?以我的理解,编译器应该能够区分这两种方法,因为它们具有不同的输入参数。为什么我需要一个功能接口并炸毁我的代码?
编辑:链接的副本没有回答我的问题,因为我问的是不同的方法参数。但我在这里得到了一些非常有用的答案,感谢所有帮助过的人! :)
EDIT2:抱歉,我显然不是母语人士,但准确地说:
public interface TestInterface {
public void hans(); //has no input parameters</br>
public void hans(String a); //has 1 input parameter, type String</br>
public void hans(String a, int b); //has 2 input parameters, 1. type = String, 2. type = int</br>
public void hans(int a, int b); //has also 2 input parameters, but not the same and a different order than `hans(String a, int a);`, so you could distinguish both
}
public class Test {
public static void main(String...args) {
TestInterface i = () -> System.out.println("Hans");
i = (String a) -> System.out.println(a);
i = (String a, int b) -> System.out.println(a + b);
i = (int a, int b) -> System.out.println(a);
i.hans(2, 3); //Which method would be called? Of course the one that would take 2 integer arguments. :)
}
}
我要问的只是论据。方法名称无关紧要,但每个方法都采用不同参数的唯一顺序,因此,Oracle 可以实现此功能,而不是只使每个 "Lambda-Interface".
的方法成为可能。您不必为了创建 lambda 函数而创建功能接口。该接口允许您为将来的函数调用创建实例。
在您的情况下,您可以使用现有的接口 Runable
Runnable r = () -> System.out.println("Hans");
然后调用
r.run();
您可以将 lambda ->
视为以下的简写形式:
Runnable r = new Runnable() {
void run() {
System.out.println("Hans");`
}
}
使用 lambda,您不需要在上例中创建的匿名 class。
但这有一些限制,为了弄清楚应该调用什么方法,与lambdas一起使用的接口必须是SAM(单一抽象方法)。那么我们只有一种方法。
有关更详细的解释,请阅读:
Introduction to Functional Interfaces – A Concept Recreated in Java 8
当你写的时候:
TestInterface i = () -> System.out.println("Hans");
您实现了 TestInterface
的 void hans()
方法。
如果您可以将 lambda 表达式分配给具有多个抽象方法的接口(即非功能接口),则 lambda 表达式只能实现其中一个方法,而其他方法未实现。
你不能通过将两个具有不同签名的 lambda 表达式分配给同一个变量来解决它(就像你不能将两个对象的引用分配给一个变量并期望该变量同时引用两个对象一样).
它们必须只包含一种方法的最重要原因是,否则很容易造成混淆。如果接口中允许多个方法,如果参数列表相同,lambda 应该选择哪个方法?
interface TestInterface {
void first();
void second(); // this is only distinguished from first() by method name
String third(); // maybe you could say in this instance "well the return type is different"
Object fourth(); // but a String is an Object, too !
}
void test() {
// which method are you implementing, first or second ?
TestInterface a = () -> System.out.println("Ido mein ado mein");
// which method are you implementing, third or fourth ?
TestInterface b = () -> "Ido mein ado mein";
}
您似乎在寻找 匿名 类。以下代码有效:
public class Test {
public static void main(String...args) {
TestInterface i = new TestInterface() {
public void hans() {
System.out.println("Hans");
}
public void hans(String a) {
System.out.println(a);
}
};
i.hans();
i.hans("Hello");
}
}
public interface TestInterface {
public void hans();
public void hans(String a);
}
Lambda 表达式(大部分)是一种仅使用一种方法编写匿名 类 的较短方式。 (同样,匿名 类 是 shorthand for inner 类,你只在一个地方使用)
根据java specs,函数式接口只能包含一个抽象方法。
lambda 表达式当然可以像您注释的代码那样一次性使用,但是当涉及到将 lambda 表达式作为参数传递给模拟函数回调时,函数式接口是必须的,因为在这种情况下,变量数据类型是功能界面。
例如Runnable
是内置函数式接口:
public interface Runnable() {
public void run();
}
用法如下:
public class LambdaTest {
// data type of parameter 'task' is functional interface 'Runnable'
static void doSeveralTimes(Runnable task, int repeat) {
for (int i = 0; i < repeat; i++) {
task.run();
}
}
public static void main(String[] args) {
// one-time lambda
doSeveralTimes(() -> {
System.out.println("one-time lambda");
}, 3);
// lambda as variable
Runnable test;
test = () -> {
System.out.println("lambda as variable");
};
doSeveralTimes(test, 3);
}
}
结果是:
one-time lambda
one-time lambda
one-time lambda
lambda as variable
lambda as variable
lambda as variable
lambda 表达式不过是定义功能接口实现的快捷方式。 相当于一个函数式接口实现的实例。
在java实现接口时,需要实现其所有抽象方法(否则实现class就必须是接口)
Java 编译器在内部使用 class 定义和方法扩展 lambda 表达式,以及实例化此 class 的语句。目前 java 没有 support/provide 将 1 个以上的 lambda 与 1 个接口相关联的方法。
public class Test { public static void main(String...args) { TestInterface i = () -> System.out.println("Hans"); // this will not compile as the implementation for public void hans(String a); can not be provided/is not found //i = (String a) -> System.out.println(a); //this can not add an implementation for 2nd method to i after compilation of 1st lambda } } public interface TestInterface { public void hans(); public void hans(String a); }
这就是 java 中的 lambda 仅适用于具有一种方法或功能接口的接口的原因。