JDK1.8新增特性

新特性:

Lambda表达式: (语法三要素:参数、箭头、代码)

JDK1.8引入的一种新语法Lambda表达式,它简化了匿名内部类的使用和提高代码的可读性。

java 复制代码
/**正常写法创建Runable**/
Runnable runnable = new Runnable() {
    @Override
    public void run() {
        System.out.println("*************");
    }
};

/**Lambda表达式写法*/
Runnable runnable = () -> System.out.println("*************");

接口提供默认方法和静态方法:

java 复制代码
public interface UserService {
    /**
     * 默认方法
     */
    default void add(){
        System.out.println("add");
    };
   
    /**
     * 静态方法
     * @param id
     * @return
     */

    public static User getUser(String id){
        return new User();
    };
}

Stream API :

JDK1.8引入的一种新抽象流,提供一种新的处理数据方式,对集合或数据元素进行函数式编程数据处理;所有 Collection 集合都可以通过 stream 默认方法获取流。

java 复制代码
  List<String> list = Arrays.asList("ASDSFSDSF","NBDS","WKEKRERE","BC8D");
            
  //通过stream流过滤列表中长度等4的字符串列表
  List<String> newList = list.stream().filter(pre->pre.length()==4).collect(Collectors.toList());
  //通过stream流把列表内容转换小写并返回一个新的列表
  List<String> toLowerCaseList = list.stream().map(String::toLowerCase).collect(Collectors.toList());
  //获取集合长度
  long count = list.stream().count();
  //获取集合第1个元素
  Optional<String> first = list.stream().findFirst();

函数试接口 :

1、自定义函数试接口

java 复制代码
@FunctionalInterface
public interface MyFunctionalInterface {
    int add(int a,int b);
}
//调用
MyFunctionalInterface myFunctionalInterface = (a,b)-> a+b;
int a = myFunctionalInterface.add(5,2);
System.out.println(a);

2、Predicate<T>:判断型接口输入一个参数T,返回一个布尔值

java 复制代码
 Predicate<String> isEmpty = p -> p.isEmpty();
 // 输出: false
 System.out.println(isEmpty.test("abc"));

3、Function<T,R>:函数试接口有输入参数T和返回结果R,用于执行一些转换逻辑。

java 复制代码
Function<Integer, Integer> function = (Integer i) -> i * i;
// 输出: 100
System.out.println(function.apply(10));

4、Supplier<T>:供给型接口,无参数返回数据类型T。

5、Consumer<T>:消费型接口,有参数T,无返回值。

java 复制代码
public class User {
    public void follow(final String str) {
        System.out.println("Following the " + str);
    }
}

Consumer<String> follow = user :: follow;
follow.accept("Consumer....");

方法引用 :

1、构造器引用: ClassName::new

2、类的静态方法引用: ClassName::staticMethodName

3、对象的实例方法引用: object::methodName

4、特定类型的实例方法引用:TypeName::methodName

LocalDate API :

1、LocalDate : 年月日;

2、LocalTime : 时分秒;

3、LocalDateTime : 年月日时分秒;

4、Period : 两个日期之间的时间间隔;

5、Duration : 两个时间之间的持续时间;

相关推荐
努力也学不会java39 分钟前
【设计模式】 原型模式
java·设计模式·原型模式
方渐鸿1 小时前
【2024】k8s集群 图文详细 部署安装使用(两万字)
java·运维·容器·kubernetes·k8s·运维开发·持续部署
学亮编程手记1 小时前
K8S v1.33 版本主要新特性介绍
java·容器·kubernetes
Haven-2 小时前
Java-面试八股文-JVM篇
java·jvm·面试
我真的是大笨蛋2 小时前
JVM调优总结
java·jvm·数据库·redis·缓存·性能优化·系统架构
wjs0403 小时前
Git常用的命令
java·git·gitlab
superlls3 小时前
(算法 哈希表)【LeetCode 349】两个数组的交集 思路笔记自留
java·数据结构·算法
honder试试3 小时前
焊接自动化测试平台图像处理分析-模型训练推理
开发语言·python
^Rocky3 小时前
JavaScript性能优化实战
开发语言·javascript·性能优化
田里的水稻3 小时前
C++_队列编码实例,从末端添加对象,同时把头部的对象剔除掉,中的队列长度为设置长度NUM_OBJ
java·c++·算法