java 8的一些新用法

http://www.manongjc.com/article/44995.html

1.排序
按升序排 :Collections.sort(shopInfoVO1List, Comparator.comparing(ShopInfoVO1::getDistance));
按降序排: Collections.sort(shopInfoVO1List, Comparator.comparing(ShopInfoVO1::getDistance).reversed());
2.去除对象重复
List uniqueList = marketCouponList.stream()
.collect(Collectors.collectingAndThen(
Collectors.toCollection(
() -> new TreeSet<>(Comparator.comparing(MarketCouponLogVO::getCouponId))),
ArrayList::new));
3.求和
// 计算店铺中的商品总价格
BigDecimal shopTotalMoney = BigDecimal.ZERO;
goodsTotalMoney = goodsBaseInfoVO1List.
stream().
map(GoodsBaseInfoVO1::getPrice).
reduce(BigDecimal.ZERO, BigDecimal::add);
4.取集合的交集
ListgoodCateIdList=shopCateList.stream().filter(item -> goodsGroupRelCateList.contains(item)).collect(toList());
5.过滤集合的重复元素
List uniqueTreeNodeList=treeNodeList.stream().distinct().collect(Collectors.toList());
6.按条件进行过滤
list.stream().filter(user-> user.getId() > 5 && “1组”.equals(user.group)).collect(Collectors.toList());
List collect = cityProperties.getDistricts().stream().filter(p -> p.getParentCode().equals(code))
.collect(Collectors.toList());
7.对集合进行分组
//List 以ID分组 Map<Integer,List>
Map<Integer, List> groupBy = appleList.stream().collect(Collectors.groupingBy(Apple::getId));
System.err.println(“groupBy:”+groupBy);
{1=[Apple{id=1, name=‘苹果1’, money=3.25, num=10}, Apple{id=1, name=‘苹果2’, money=1.35, num=20}], 2=[Apple{id=2, name=‘香蕉’, money=2.89, num=30}], 3=[Apple{id=3, name=‘荔枝’, money=9.99, num=40}]}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/419032.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

jdk1.8对synchronized锁的优化

synchronized 锁的优化&#xff1a;锁的四种状态-无锁&#xff0c;偏向锁、轻量级锁&#xff0c;重量级锁 1、偏向锁&#xff1a;原因是大多数时候是不存在锁竞争的&#xff0c;常常是一个线程多次获得同一个锁&#xff0c;因此如果每次都要竞争锁会增大很多没有必要付出的代价…

03.校准时间

复制代码保存为vbs,js等文件的时候,报莫名其妙的错误,把文件的编码格式保存为ANSI , utf8不行;VBS校准系统时间在有线网络行&#xff0c;无线就不行&#xff0c;请修改&#xff01;&#xff01;已解决&#xff01; - VBS求助&讨论 - 批处理之家 批处理_BAT_CMD_DOS_VBS_Per…

淘宝开发平台 java 调用实例

Java调用示例代码 更新日期&#xff1a;2016-02-06访问次数&#xff1a;53432 主要步骤 填充公共参数 填充业务参数 计算请求签名 发起API调用 获取API结果 示例代码 import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.…

LeetCode 293. Flip Game

原题链接在这里&#xff1a;https://leetcode.com/problems/flip-game/description/ 题目&#xff1a; You are playing the following Flip Game with your friend: Given a string that contains only these two characters: and -, you and your friend take turns to flip…

Redis缓存,你真的懂了吗

为什么要用缓存&#xff08;缓存的优点、场景&#xff09; &#xff08;1&#xff09;在项目中缓存是如何使用的&#xff1f; 结合你自己项目的业务来&#xff0c;你如果用了那恭喜你&#xff0c;你如果没用那不好意思&#xff0c;你硬加也得加一个场景吧&#xff01; &…

Java sdk 调用淘宝开发平台

public static void main(String[] args) throws Exception { // TOP服务地址&#xff0c;正式环境需要设置为http://gw.api.taobao.com/router/rest String serverUrl “http://gw.api.tbsandbox.com/router/rest”; String appKey “test”; // 可替换为您的沙箱环境应用的…

编写一个函数func(),将此函数的输入参数(int型)逆序输出显示,如54321 – 12345,要求使用递归,并且函数体代码不超过8行...

public class Test{  //中间变量private String res "0";  //方法public int func(int i){if(i>0){int temp i%10;res resString.valueOf(temp);func(i/10);}return Integer.valueOf(res);}public static void main(String[] args){Test tnew Test();int a…

你会用Java实现两个大数相加吗

两个大数相加(Java)* 1、是整数&#xff1b;* 2、两个数无限大&#xff0c;long都装不下&#xff1b;* 3、不能用BigInteger&#xff1b;* 4、不能用任何包装类提供的运算方法&#xff1b;* 5、两个数都是以字符串的方式提供。 * 思路&#xff1a;* 字符串逐位相加&#xff0c;…

获取淘宝开发平台的sessionKey

淘宝API调用 申请 获取session key 在调用淘宝的API时&#xff0c;我们都会用到appkey,appsecret,appsession。 1、我们申请应用就会有appkey和appsecret了 2、正式环境下获取SessionKey 注意&#xff1a;web插件平台应用和web其它应用在正式环境下是同样的获取方法 1&…

PERL 实现微信登录

get 请求: https://login.weixin.qq.com/jslogin? appidwx782c26e4c19acffb &redirect_urihttps%3A%2F%2Fwx.qq.com%2Fcgi-bin%2Fmmwebwx-bin%2Fwebwxnewloginpage &funnew &langzh_CN &_1455501911998参数: _ 1455501911998 appid wx782…

安装git客户端

https://blog.csdn.net/sinat_16998945/article/details/81062278 https://blog.csdn.net/qq_38225558/article/details/86220668

SQL规范

一、三范式 1、 参考网址&#xff1a; http://www.cnblogs.com/linjiqin/archive/2012/04/01/2428695.html (1)&#xff0e;第一范式(确保每列保持原子性) (2)&#xff0e;第二范式(确保表中的每列都和主键相关) (3)&#xff0e;第三范式(确保每列都和主键列直接相关,而不是间接…

618小记

转载&#xff1a;https://www.zhihu.com/question/379688667/answer/1488971063 任何专业的开发者都应该明白&#xff0c;实现方法服从于功能需求&#xff0c;而功能需求体现在接口定义中。 所以&#xff0c;必须要先确定接口定义&#xff0c;然后才能开始实现&#xff0c;…

关于多条id相同,只取其中一条记录的sql语句

需要使用&#xff1a;分区函数用法(partition by 字段) select *,row_number() over(partition by item order by date ) as index from tab 分区索引 ------------------------------------------- SQL Server select * from (select * , row_number() over(partition by id …