In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly shows you the "sample analysis of String StringBuffer, StringBuilder and String in java", which is easy to understand and well-organized. I hope it can help you solve your doubts. Let the editor lead you to study and study the "sample analysis of String StringBuffer, StringBuilder and String in java".
Variability
To put it simply: the String class uses the final keyword modifier character array to hold the string, private final char value [], so the String object is immutable. Both StringBuilder and StringBuffer inherit from the AbstractStringBuilder class, and in AbstractStringBuilder an array of characters is used to hold the string char [] value but not modified with the final keyword, so both objects are mutable.
The constructors of StringBuilder and StringBuffer are implemented by calling the parent constructor, that is, AbstractStringBuilder, and you can consult the source code on your own.
Thread safety
Objects in String are immutable, which can be understood as constants and thread-safe. AbstractStringBuilder is the common parent of StringBuilder and StringBuffer, defining some basic string operations, such as expandCapacity, append, insert, indexOf and other public methods. StringBuffer adds a synchronization lock to a method or a synchronization lock to a called method, so it is thread-safe. StringBuilder does not add a synchronization lock to the method, so it is not thread-safe.
Performance
Each time a change is made to the String type, a new String object is generated, and the pointer is then pointed to the new String object. Instead of generating a new object and changing the object reference, StringBuffer operates on the StringBuffer object itself each time. In the same case, using StringBuilder can only get a performance improvement of about 10% to 15% compared with using StringBuffer, but it runs the risk of multi-thread unsafety.
Summary of the use of the three:
Manipulate a small amount of data: suitable for String
Manipulate a large amount of data under a single-thread string buffer: suitable for StringBuilder
Multithreaded operation string buffer to manipulate a large amount of data: suitable for StringBuffer
The above is all the contents of the article "sample Analysis of String StringBuffer, StringBuilder and String in java". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!
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.