本文主要是介绍函数式接口,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1、无参无返回值
public interface MyInterOne {
void fun();
}
public interface DemoOneInterface {
// zhelikeijiangqitiquchulai
static void print(MyInterOne myInterOne) {
Objects.requireNonNull(myInterOne);
myInterOne.fun();
// zhongdianshishangmianzhgefangfazuowanjiukeyile
// xiamianhaikeyilaizuoshenme
System.out.println("shangmiandezhixignwanle,wolaizuoyihuier");
// zidingyicaozuoleixing,danshiduiyuwomenlaishuo
}
}
public class DemoOne implements DemoOneInterface {
public static void main(String[] args) {
DemoOneInterface.print(()->{
System.out.println("hello,world");
});
}
}
2、无参有返回值
public interface MyInterface3 {
String fun();
}
public interface DemoTwoInterface {
static String print(MyInterface3 myInterface3){
Objects.requireNonNull(myInterface3);
return myInterface3.fun();
}
}
public class DemoTwo {
public static void main(String[] args) {
final String print = DemoTwoInterface.print(() -> "hello,world");
System.out.println("---------");
System.out.println(print);
}
}
3、有参无返回值
public interface MyInterface4 {
void fun(int i);
}
public interface DemoThreeInterface {
static void print(MyInterface4 myInterface4){
Objects.requireNonNull(myInterface4);
myInterface4.fun(6666);
}
}
public class DemoThree {
public static void main(String[] args) {
// youcanwufanhuizhi,laiduizhelidezhijinxignchuli
DemoThreeInterface.print(i -> {
System.out.println("value is : "+i);
});
}
}
4、有参有返回值
public interface MyInterface4 {
String print(int i);
}
public interface DemoFourInterface {
static String print(MyInterface4 myInterface4){
return myInterface4.print(666);
}
}
public class DemoFour {
public static void main(String[] args) {
final String print = DemoFourInterface.print(i -> {
final String s = String.valueOf(i)+123456;
return s;
});
System.out.println("=============");
System.out.println(print);
}
}
这篇关于函数式接口的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!