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

What are the expansion rules of StringBuilder?

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

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

This article introduces what are the expansion rules of StringBuilder, the content is very detailed, interested friends can refer to, I hope it can be helpful to you.

The default size of the char array opened by StringBuilder when it is created

StringBuilder () default 16

StringBuilder ("Str") default Str.length () + 16

Rules for StringBuilder sb expansion:

The current capacity is judged each time when sb.append () is called

Determine whether the minimum capacity required (the length of the data already stored + the length of the data to be stored) is greater than the length of the stored char array. If so, expand the capacity in newCapacity.

Determine whether the length of 2 times + 2 of the current char array length meets the needs of capacity expansion, does not meet the length of data set to be stored + the length of data to be stored, and determines whether append expansion exceeds MAX_ARRAY_SIZE (Integer.MAX_VALUE-8). If an exception OutOfMemoryError is thrown

What are the rules of StringBuilder expansion to share here, I hope that the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.

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