what is mean by String and StringBuffer?
What is mean by Methooverriding and Overloading?
Answer Posted / raja papaiah. m
When you create a string object, you are creating a string
that cannot be changed. this once a string object has been
created, you cannot change the character that comprise that
string. at first that may seem to be a serious restriction.
However, such is not the case. You can still perform all
types of string operations. The difference is that each time
you need an altered version of existing string,a new string
object is create that contains the modifications. The
original string is left unchanged. this approach is used
because fixed, immutable strings can be implemented more
efficiently than changeable ones. For those cases in which a
modification string is desired, Java provides two options:
StringBuffer and StringBuilder Both hold strings that can be
modified after they are created
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How do you use parseint in java?
What are the steps that are followed when two computers connect through tcp?
What are some examples of variable costs?
List two java ide’s?
How many classes can any class inherit java?
Explain features of interfaces in java?
Why string is immutable or final in java
What do you mean by garbage collection used in java?
I want to re-reach and use an object once it has been garbage collected. Define how it’s possible?
Does list allow duplicates in java?
Can a list be null in java?
What is integer size in java?
How do I convert a numeric ip address like 192.18.97.39 into a hostname like java.sun.com?
Why we used vector class?
What happens if we don’t define serial version uid?