![]() |
听话的煎饼 · iOS safari 后退 js ...· 3 月前 · |
![]() |
酒量小的四季豆 · Git push from inside ...· 4 月前 · |
![]() |
博学的乌冬面 · Http请求 | uView - ...· 5 月前 · |
![]() |
强健的豆浆 · 张德芳:烽火中的居延汉简_中国作家网· 7 月前 · |
![]() |
小胡子的蛋挞 · 国产数据库公司达梦登陆科创板 上市首日暴涨177%· 9 月前 · |
python history django geeks |
https://www.geeksforgeeks.org/collectors-groupingby-method-in-java-with-examples/ |
![]() |
谈吐大方的甘蔗
1 年前 |
The
groupingBy()
method of Collectors class in Java are used for grouping objects by some property and storing results in a Map instance. In order to use it, we always need to specify a property by which the grouping would be performed. This method provides similar functionality to SQL’s GROUP BY clause.
Syntax:
public static Collector<T, ?, Map<K, List>> groupingBy(Function classifier)
Type Parameter: This method takes two type parameters:
Parameters: This method accepts two mandatory parameters:
Return value:
It returns a collector as a map.
Below is the program implementation of groupingBy() method:
Program 1:
import
java.util.*;
import
java.util.function.Function;
import
java.util.stream.Collectors;
public
class
GFG {
public
static
void
main(String[] args)
// Get the List
List<String> g
= Arrays.asList(
"geeks"
,
"for"
,
"geeks"
);
// Collect the list as map
// by groupingBy() method
Map<String, Long> result
= g.stream().collect(
Collectors.groupingBy(
Function.identity(),
Collectors.counting()));
// Print the result
System.out.println(result);
{geeks=2, for=1}