what is the difference between String and StringBuffer in java?
is there maximum size for String?
|
what is the difference between String and StringBuffer in java? is there maximum size for String? |
|||||||
|
|
Performance wise, You can also use |
|||||||||||||
|
|
A A The maximum length for both is Integer.MAX_VALUE, because they are stored internally as arrays, and Java arrays only have an The performance improvement between Concat with String took: 1781ms Concat with StringBuffer took: 0ms
|
||||
|
|
|
String is an immutable class. This means that once you instantiate an instance of a string like so:
The object in memory cannot be altered. Instead you will have to create a new instance, copy the old String and append whatever else as in this example:
What is really happening hear is that we are NOT updating the existing str1 object... we are reallocating new memory all together, copying the "hello" data and appending " world!" to the end, then settings the str1 reference to point to this new memory. So it really looks more like this under the hood:
So it follows that this "copy + paste and move stuff around in memory" process can be very expensive if done repitively especially recursively. When you are in that situation of having to do things over and over utilize StringBuilder. It is mutable and can append strings to the end of the current one because it's back by an [growing array] (not 100% if that is the actual data structure, could be a list). |
||||
|
|
|
From the API:
|
|||
|
|
|
A StringBuffer is used to create a single string from many strings, e.g. when you want to append parts of a String in a loop. You should use a StringBuilder instead of a StringBuffer when you have only a single Thread accessing the StringBuffer, since the StringBuilder is not synchronized and thus faster. AFAIK there is no upper limit for String size in Java as a language, but the JVMs probably have an upper limit. |
|||||
|
|
|||
|
|
|
A
or equivalently
because the above constructs implicitly creates new string everytime which will be a huge performance and drop. A |
|||
|
|
|
A A Since both are an array, the maximum size for both is equal to the maximum size of an integer, which is 2^31-1 (see JavaDoc, also check out the JavaDoc for both |
|||||||||||||
|
|
I found interest answer for compare performance String vs StringBuffer by Reggie Hutcherso Source: http://www.javaworld.com/javaworld/jw-03-2000/jw-0324-javaperf.html Java provides the StringBuffer and String classes, and the String class is used to manipulate character strings that cannot be changed. Simply stated, objects of type String are read only and immutable. The StringBuffer class is used to represent characters that can be modified. The significant performance difference between these two classes is that StringBuffer is faster than String when performing simple concatenations. In String manipulation code, character strings are routinely concatenated. Using the String class, concatenations are typically performed as follows:
If you were to use StringBuffer to perform the same concatenation, you would need code that looks like this:
Developers usually assume that the first example above is more efficient because they think that the second example, which uses the append method for concatenation, is more costly than the first example, which uses the + operator to concatenate two String objects. The + operator appears innocent, but the code generated produces some surprises. Using a StringBuffer for concatenation can in fact produce code that is significantly faster than using a String. To discover why this is the case, we must examine the generated bytecode from our two examples. The bytecode for the example using String looks like this:
The bytecode at locations 0 through 9 is executed for the first line of code, namely:
Then, the bytecode at location 10 through 29 is executed for the concatenation:
Things get interesting here. The bytecode generated for the concatenation creates a StringBuffer object, then invokes its append method: the temporary StringBuffer object is created at location 10, and its append method is called at location 23. Because the String class is immutable, a StringBuffer must be used for concatenation. After the concatenation is performed on the StringBuffer object, it must be converted back into a String. This is done with the call to the toString method at location 26. This method creates a new String object from the temporary StringBuffer object. The creation of this temporary StringBuffer object and its subsequent conversion back into a String object are very expensive. In summary, the two lines of code above result in the creation of three objects:
Now, let's look at the bytecode generated for the example using StringBuffer:
The bytecode at locations 0 to 9 is executed for the first line of code:
The bytecode at location 10 to 16 is then executed for the concatenation:
Notice that, as is the case in the first example, this code invokes the append method of a StringBuffer object. Unlike the first example, however, there is no need to create a temporary StringBuffer and then convert it into a String object. This code creates only one object, the StringBuffer, at location 0. In conclusion, StringBuffer concatenation is significantly faster than String concatenation. Obviously, StringBuffers should be used in this type of operation when possible. If the functionality of the String class is desired, consider using a StringBuffer for concatenation and then performing one conversion to String. |
|||||
|
|
String is immutable, meaning that when you perform an operation on a String you are really creating a whole new String. StringBuffer is mutable, and you can append to it as well as reset its length to 0. In practice, the compiler seems to use StringBuffer during String concatenation for performance reasons. |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.