一个人走得远了,就会忘记自己为了什么而出发,希望你可以不忘初心,不要随波逐流,一直走下去
欢迎关注点赞收藏留言
本文由 程序喵正在路上 原创,CSDN首发!
系列专栏:Java入门
首发时间:2022年7月21日
✅ 如果觉得博主的文章还不错的话,希望小伙伴们三连支持一下哦
在数学中,函数就是有输入量、输出量的一套计算方案,也就是 ”拿数据做操作“
面向对象思想强调 ”必须通过对象的形式来做事情“
函数式思想则尽量忽略面向对象的复杂语法:”强调做什么,而不是以什么形式去做“
需求:启动一个线程,在控制台输出一句话:多线程程序启动了
方式1:
//MyRunnable类
public class MyRunnable implements Runnable {
@Override
public void run() {
System.out.println("多线程程序启动了");
}
}
public class LambdaDemo {
public static void main(String[] args) {
//实现类的方式实现需求
// MyRunnable my = new MyRunnable();
// Thread t = new Thread(my);
// t.start();
//匿名内部类的方式改进
// new Thread(new Runnable() {
// @Override
// public void run() {
// System.out.println("多线程程序启动了");
// }
// }).start();
//Lambda表达式的方式改进
new Thread(() -> {
System.out.println("多线程程序启动了");
}).start();
}
}
方式2:
方式3:
new Thread(new Runnable() {
@Override
public void run() {
System.out.println("多线程程序启动了");
}
}).start();
new Thread(() -> {
System.out.println("多线程程序启动了");
}).start();
void eat();
useEatable(Eatable e)
useEatable
方法public interface Eatable {
void eat();
}
//接口的实现类
public class EatableImpl implements Eatable {
@Override
public void eat() {
System.out.println("芝士,就是力量!");
}
}
//测试类
public class EatableDemo {
public static void main(String[] args) {
//在主方法中调用 useEatable 方法
Eatable e = new EatableImpl();
useEatable(e);
//匿名内部类
useEatable(new Eatable() {
@Override
public void eat() {
System.out.println("芝士,就是力量!");
}
});
//Lambda表达式
useEatable(() -> {
System.out.println("芝士,就是力量!");
});
}
private static void useEatable(Eatable e) {
e.eat();
}
}
void fly(String s);
useFlyable(Flyable f)
useFlyable
方法public interface Flyable {
void fly(String s);
}
public class FlyableDemo {
public static void main(String[] args) {
//匿名内部类
useFlyable(new Flyable() {
@Override
public void fly(String s) {
System.out.println(s);
System.out.println("匿名内部类");
}
});
//Lambda表达式
useFlyable(((String s) -> {
System.out.println(s);
System.out.println("Lambda表达式");
}));
}
private static void useFlyable(Flyable f) {
f.fly("风和日丽,晴空万里");
}
}
int add(int x, int y);
useAddable(Addable a)
useAddable
方法public interface Addable {
int add(int x, int y);
}
public class AddableDemo {
public static void main(String[] args) {
useAddable((int x, int y) -> {
return x + y;
});
}
private static void useAddable(Addable a) {
int sum = a.add(10, 20);
System.out.println(sum);
}
}
省略规则:
public class AddableDemo {
public static void main(String[] args) {
useAddable((int x, int y) -> {
return x + y;
});
//参数的类型可以省略
//但是有多个参数的情况下,不能只省略一个
useAddable((x, y) -> {
return x + y;
});
useFlyable((String s) -> {
System.out.println(s);
});
//如果参数有且仅有一个,那么小括号也可以省略
useFlyable(s -> {
System.out.println(s);
});
//如果代码块的语句只有一条,可以省略大括号和分号
useFlyable(s -> System.out.println(s));
//如果代码块的语句只有一条,可以省略大括号和分号,如果有return,return也要省略掉
useAddable(((x, y) -> x + y));
}
private static void useFlyable(Flyable f) {
f.fly("风和日丽,晴空万里");
}
private static void useAddable(Addable a) {
int sum = a.add(10, 20);
System.out.println(sum);
}
}
注意事项:
Runnable = () -> System.out.println("Lambda表达式");
new Thread() -> System.out.prinln("Lambda表达式").start();
public interface Inter {
void show();
}
public class LambdaDemo {
public static void main(String[] args) {
//使用Lambda表达式必须要有接口,并且要求接口中有且仅有一个抽象方法
useInter(() -> System.out.println("好好学习,天天向上"));
//必须有上下文环境,才能推导出Lambda对应的接口
new Thread(new Runnable() {
@Override
public void run() {
System.out.println("匿名内部类");
}
}).start();
new Thread(() -> System.out.println("Lambda表达式")).start();
}
private static void useInter(Inter i) {
i.show();
}
}
所需类型不同
使用限制不同
实现原理不同
public interface Inter {
void show();
}
public abstract class Animal {
public abstract void method();
}
public class Student {
public void study() {
System.out.println("爱生活,爱Java");
}
}
public class LambdaDemo {
public static void main(String[] args) {
//匿名内部类
useInter(new Inter() {
@Override
public void show() {
System.out.println("接口");
}
});
useAnimal(new Animal() {
@Override
public void method() {
System.out.println("抽象类");
}
});
useStudent(new Student() {
@Override
public void study() {
System.out.println("具体类");
}
});
//Lambda表达式
useInter(() -> System.out.println("接口"));
// useAnimal(() -> System.out.println("抽象类"));
// useStudent(() -> System.out.println("具体类"));
}
private static void useInter(Inter i) {
i.show();
}
private static void useStudent(Student s) {
s.study();
}
private static void useAnimal(Animal a) {
a.method();
}
}