WHAT IS THE DIFFERENCE BETWEEN STRING AND STRING BUILDER ?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
What are extensions in c#?
What does args mean in c#?
What is polymorphism c# example?
What are the ways to deploy an assembly?
What is method and function in c#?
What is dataset and dataadapter in c#?
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?
What is a streamwriter in c#?
Which .gang of four. Design pattern is shown below?
Can namespace contain the private class?
What is the use of 0 in c#?
Can an interface inherit an interface