一篇文章讲明白jav8特性特性应用

简介: 一篇文章讲明白jav8特性特性应用

List tableData = new ArrayList(1);

tableData = tableData.stream().sorted(Comparator.comparing(jsonObject -> StringNullUtil.isNotBlank((jsonObject).getString("id1Sort"))?(jsonObject).getInteger("id1Sort"):0)).collect(Collectors.toList());

List //代码效果参考:http://www.zidongmutanji.com/bxxx/446364.html

collect = deptAllList.stream().filter(dept -> dept.getDeptId().intValue() != dept.getParentId())

.sorted(Comparator.comparingInt(SysDept::getSort)).map(dept -> {

DeptTree node = new DeptTree();

node.setId(dept.getDeptId());

node.setParentId(dept.getParentId());

node.setName(dept.getName());

return node;

}).collect(Collectors.toList());

Map

//代码效果参考:http://www.zidongmutanji.com/bxxx/297284.html

.collect(Collectors.groupingBy(CatalogSystem::getName));

//list按逗号隔开,输出string

List msgList = new ArrayList();

msgList.stream().map(v->String.valueOf(v)).collect(Collectors.joining(";"))

Map map = userList.stream().collect(Collectors.toMap(User::getAge, User::getName, (a, b) -> b));

Map sysDeptMap=sysDeptList.//代码效果参考:http://www.zidongmutanji.com/bxxx/316494.html

stream().collect(Collectors.toMap(SysDept::getName, v -> v));

List roleMenuList = Arrays.stream(menuIds.split(",")).map(menuId -> {

相关文章
|
7月前
|
开发者
简述函数和框架的区别
简述函数和框架的区别
41 1
|
设计模式 Cloud Native JavaScript
掌握Go类型内嵌:设计模式与架构的新视角1
掌握Go类型内嵌:设计模式与架构的新视角
76 0
|
设计模式 编译器 Go
掌握Go类型内嵌:设计模式与架构的新视角2
掌握Go类型内嵌:设计模式与架构的新视角
74 0
|
SQL XML 数据库
C#OOP之十六 开发常用之各种规范参考
C#OOP之十六 开发常用之各种规范参考
71 0
|
7月前
一篇文章讲明白jav8特性特性应用
一篇文章讲明白jav8特性特性应用
409 0
|
7月前
|
前端开发 JavaScript Shell
简述框架和函数库的区别
简述框架和函数库的区别
|
Go 开发者
一文详解Go语言接口嵌套组合的精髓!
一文详解Go语言接口嵌套组合的精髓!
213 0
|
8月前
|
设计模式 JavaScript 前端开发
简述框架与函数库的区别
简述框架与函数库的区别
44 1
|
算法 程序员 C语言
01-C++核心语法|C++概述【C++简介、C++起源、可移植性和标准、为什么C++会成功、从一个简单的程序开始认识C++】
复习`C++核心语法`,且适当进行汇编探索底层实现原理,进一步夯实基础,为以后的`底层开发`、`音视频开发`、`跨平台开发`、`算法`等方向的进一步学习埋下伏笔。
01-C++核心语法|C++概述【C++简介、C++起源、可移植性和标准、为什么C++会成功、从一个简单的程序开始认识C++】
|
编译器 C语言
C++11常用的一部分新特性(中)
C++11常用的一部分新特性(中)