In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-15 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
Editor to share with you how to use Java Stream API to convert List into Map according to custom grouping rules. I believe most people don't know much about it, so share this article for your reference. I hope you can learn a lot after reading this article. Let's learn about it together.
The test data are four employee object instances in List:
Group according to the city where the employees are located:
The results were divided into three groups:
The employees of the first group are in Shanghai:
The employees of the second group are in Chengdu:
Count the number of employees in each group:
Divide employees into groups. Those with a score greater than 101 are in one group, and those less than or equal to 101 are in another group:
Grouping result:
Package java8;import java.util.ArrayList;import java.util.List;import java.util.Map;import java.util.Map.Entry;import java.util.function.Consumer;import java.util.stream.Collectors;class Employee {private String city; private String name; private int score; public Employee (String name, String city, int score) {this.city = city; this.name = name; this.score = score } public String getCity () {System.out.println ("city:" + this.city); return this.city;} public String getName () {return this.name;} public int getScore () {return this.score;} @ Override public String toString () {return String.format ("Employee:" + this.name + "city:" + this.city) }} class Person {private String name; private int age; Person (String name, int age) {this.name = name; this.age = age;} @ Override public String toString () {return String.format ("Person {name='%s', age=%d}", name, age);} / / Jerry 2016-01-15 20:51PM? Type, which is mostly used for extends generic, accepts all Object's sub classpublic class StreamTest {private static void printMap (Map)
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.