Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What is the difference between System.String and System.StringBuilder classes?
Difference between System.String & System.StringBuilder Classes?
✍: Guest
System.String is immutable; System.StringBuilder was designed with the purpose of having a mutable string where a variety of operations can be performed.
prefer System.StringBuilder when you are doing lot of string manuplation operations. In which case the same string in the memory is manipulated for the resultant operation where as when System.String variable is used every time a new string instance is created in the memory
Difference..
String....
1.Its a class used to handle strings...
2.Here concatenation is used to combine two strings...
3.String object is used to concatenate two strings...
4.The first string is combined to the other string by creating a new copy in the memory as a string object, and then the old
string is deleted..
5.we say "Strings are immutable".
..
..
String Builder....
1.This is also the class used to handle strings...
2.Here Append method is used...
3.Here, Stringbuilder object is used...
4.Insertion is done on the existing string...
5.Usage of StringBuilder is more efficient in case large amounts of string manipulations have to be performed
2009-03-06, 4548👍, 0💬
Popular Posts:
How To Fade Image Edges to Background Colors? - PSP Tutorials - Fading Images to Background Colors w...
How To Truncate an Array? - PHP Script Tips - PHP Built-in Functions for Arrays If you want to remov...
What are the five levels in CMMI? There are five levels of the CMM. According to the SEI, Level 1 – ...
How To Export Data to an XML File? - Oracle DBA FAQ - Introduction to Oracle SQL Developer If you wa...
How do we generate strong names ? or What is use the of SN.EXE ? or How do we apply strong names to ...