摘要: SpringBoot 一、导读 1、开发工具及技术栈 JDK:jdk1.8.0_191 开发工具:IntelliJIDEA 2020.3.2 SpringBoot: 简化Spring的开发 需要一定的java基础 有Spring、SpringMVC、Mybatis框架知识 Maven Magic-A 阅读全文
posted @ 2023-02-20 17:21 his365 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 代码 List<Student> all = Student.getAll(); // 转换成数组 过滤所有的男性 Student[] students = all.stream().filter(s -> "男".equalsIgnoreCase(s.getSex())) .toArray(Stu 阅读全文
posted @ 2023-02-20 06:59 his365 阅读(8) 评论(0) 推荐(0) 编辑