Breaking News: Grepper is joining You.com. Read the official announcement!
Check it out

Arrange the three classes String, StringBuffer and StringBuilder in the order of efficiency for String processing operations?

Pragya Keshap answered on February 4, 2023 Popularity 1/10 Helpfulness 1/10

Contents


More Related Answers


Arrange the three classes String, StringBuffer and StringBuilder in the order of efficiency for String processing operations?

0

StringBuilder is the most efficient class. It does not have the

overhead of Synchronization. StringBuffer is a Synchronized class.

It has better performance than String but it is slower than

StringBuilder. String is the slowest for any String processing

operations, since it is leads to creation of new String literal with

each modification.

So the decreasing order of efficiency is: StringBuilder, StringBuffer,

String

https://www.geeksforgeeks.org/string-vs-stringbuilder-vs-stringbuffer-in-java/

Popularity 1/10 Helpfulness 1/10 Language java
Source: Grepper
Link to this answer
Share Copy Link
Contributed on Feb 04 2023
Pragya Keshap
0 Answers  Avg Quality 2/10


X

Continue with Google

By continuing, I agree that I have read and agree to Greppers's Terms of Service and Privacy Policy.
X
Grepper Account Login Required

Oops, You will need to install Grepper and log-in to perform this action.