Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Introduction of JDK8 Stream performance

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains the "introduction of JDK8 Stream performance", the content of the explanation is simple and clear, easy to learn and understand, now please follow the editor's ideas slowly in depth, together to study and learn "JDK8 Stream performance introduction" bar!

I. scene

When writing the code, you want to replace the previous for loop with jdk8's stream, as follows:

/ / for method Set keys = Sets.newHashSetWithExpectedSize (list.size ()); for (T data: list) {keys.add (getWrapRedisKey (data));} / / stream method Set keys = list.stream (). Map (this::getWrapRedisKey) .questions (Collectors.toSet ())

Stream can be solved with a very elegant one line of code, while for requires three lines of code, which makes it much more productive.

However, the for loop can achieve the initialization capacity, which can greatly improve the performance when the rehash is triggered frequently by add and the linked list changes to a red-black tree, so does the Collectors.toSet method of stream's api set the initialization capacity?

View the source code:

III. Testing

Talking is cheap,show me the code

Simply wrote a test code

Public static void main (String [] args) {int expectSize = 1000000; List source = generateData (expectSize); long start = System.currentTimeMillis (); testFor (source); / / testStream (source); System.out.println (System.currentTimeMillis ()-start);} private static void testFor (List source) {Set sets = Sets.newHashSetWithExpectedSize (source.size ()); for (String s: source) {sets.add (s) }} private static void testStream (List source) {source.stream () .collect (Collectors.toSet ());} private static List generateData (int size) {List list = Lists.newArrayListWithCapacity (size); for (int I = 1; I

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.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report