What is the differnence between String Buffer and String
builder despite having knowledge that String builder is
faster than String Buffer and last one is threadsafe.please
tell another important difference.
Answer Posted / vinodkumar uttara student
StringBuilder all methods are not synchronized , nothing
changes done in this class , it is same as StringBuffer.I
mean to say , more than one thread can be execute
StringBuilder object , because there is not a concept of
lock on object , any thread can execute on this object.Where
as StringBuffer class all methods are synchronized only one
thread at time can access synchronized method , because it
get lock on object.
Please help me , if i am right?
is it correct,
thanks for the reply
Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is the benefit of using enum to declare a constant?
Why object class is super class for every class in java?
What is the difference between delete and delete[]
What is the collections api in java programming?
What is the structure of java?
In which language java is written?
Can you use abstract and final both with a method?
What about features of local inner class?
What is considered an anti pattern?
How do I get a substring?
What Is Composition?
What is the use of object and class classes?
What is a substring of a string?
Wha is the output from system.out.println(“hello”+null); ?
how can i use a nonsynchronized hashtable?