Pregunta de entrevista de Fidelity Investments

Difference between String and Stringbuilder in Java. (Phone screen question)

Respuesta de la entrevista

Anónimo

25 de nov de 2014

String objects are immutable. Consider an example, String s= "test"; s.o.p(s+"interview"); The above code creates a second object for concatenation internally which is a performance issue. Consider a string buffer, StringBuilder sb = new StringBuilder("test"); sb.append("interview"); Both of them perform the concatenation operation but using String class which is immutable gives rise to performance issues where as StringBuilder class is mutable and updates the existing object!