what is the main difference between string and stringbuffer?
can you explain it with program?
Answers were Sorted based on User's Feedback
Answer / divya
String class is used to manipulate character strings that
cannot be changed.Simply stated,objects of the String are
read only and immutable.
StringBuffer class is used to represent characters that can
be modified.
Ex:Sting str=new String("core");
str +="Java";
StringBuffer str=new StringBuffer("core");
str.append("Java");
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / ashish ranjan
The main difference between String and StringBuffer is that String is Immutable, which means that we cannot modify the object which is created by the String.
As for Example.
String str = "abc";
now,
str = "abc" + "pqr";
the result is abcpqr. The previous value of str is not modified. It exists in the memory. Java Created new memory for str, which refers abcpqr.
now in case of StringBuffer
StringBuffer str = new StringBuffer("abc");
str.append("pqr");
it modifies in the same object.
| Is This Answer Correct ? | 2 Yes | 0 No |
what is ennumaration?
What are the differences between c++ and java?
how to know the total memory occupied by the objects in the ArrayList(Array list may contain duplicate objects)
How are this and super used?
What does percent mean in java?
write a program to create an vector with string(add,remove) operation.and value should be enter through keyboard.
public class Garbage { int a=0; public void add() { int c=10+20; System.out.println(c); System.out.println(a); } public static void main(String args[]) { Garbage obj=new Garbage(); System.gc(); System.out.println("Garbage Collected"); obj.add(); } } Above is a code in java used for garbage collection. object obj has been created for the class Garbage and system.gc method is called. Then using that object add method is called.System.gc method if called the obj should be garbage collected?
placement papaers of spring computing technology
0 Answers Spring Computing Technologies,
What is var keyword ?
Can long be null in java?
What are blocks?.
What is time complexity algorithm?