WHAT IS THE DIFFERENCE BETWEEN STRING AND STRING BUILDER ?

Answers were Sorted based on User's Feedback



WHAT IS THE DIFFERENCE BETWEEN STRING AND STRING BUILDER ?..

Answer / raviraj

String and String Builder class shows resemblance in terms
of values they accept(that contain series of haracters).But
the thing that distinguishes them is that string is
immutable .Immutable in the sense it will create a new copy
of memory whenever a new string is concatenated to the
existing string variable That means the existing memory is
deleted and replaced by the new memory.Whereas
Stringbuilder is mutable whenever we append a new string to
the existing string variable using append method the memory
containing the original string is extended to contain the
new string as well i.e, it won`t replace it with new memory
allocation.Hence performing string concatenations within
the same variable in the string class variables will affect
their performance.

Is This Answer Correct ?    17 Yes 0 No

WHAT IS THE DIFFERENCE BETWEEN STRING AND STRING BUILDER ?..

Answer / stanly jose

String and StringBuilder class stores strings. But you
cannot change a String object after creating one.
eg: String name = "Stanly";
you wan to change the same string name to
eg: name = "Stanly Jose";
then a new String object is creating in memory and assign
the new value as "Stanly Jose".
(A new name object is creating in memory and the
value "Stanly Jose" is assinging to the newly created
space.)

But StringBuilder class occupies the same space even if you
change the value.

If you are doing string concatenation StringBuilder class
is far better in performance than String class.

You can use StringBuilder's Append() method to use
concatenation.

note:
system.string is immutable,system.stringbuilder was
designed with the purpose of having a mutable string where
a variety of operations can be performed.

Is This Answer Correct ?    14 Yes 3 No

WHAT IS THE DIFFERENCE BETWEEN STRING AND STRING BUILDER ?..

Answer / sharifuddin

StringBuilder is a mutable, means no need to create new
variable,
But in string it is immutable, means reverse of string
builder each and every time new object for every new object
exist.

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What are extensions in c#?

0 Answers  


What does args mean in c#?

0 Answers  


What is polymorphism c# example?

0 Answers  


What are the ways to deploy an assembly?

1 Answers  


What is method and function in c#?

0 Answers  






What is dataset and dataadapter in c#?

0 Answers  


what is default accessibility for a class? what is difference b/w viewstate and controlstate? what is the default access specifier for a top level class which are not nested into other classes?

2 Answers  


What is a streamwriter in c#?

0 Answers  


Which .gang of four. Design pattern is shown below?

0 Answers  


Can namespace contain the private class?

0 Answers  


What is the use of 0 in c#?

0 Answers  


Can an interface inherit an interface

1 Answers   Synechron,


Categories