Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


String is immutable.it is true
String can be change to mutable How?

Answers were Sorted based on User's Feedback



String is immutable.it is true String can be change to mutable How?..

Answer / manoj

immutable means once created an object that cannot be changed.
if we want to change means it will create another object
that is mutable

Is This Answer Correct ?    7 Yes 0 No

String is immutable.it is true String can be change to mutable How?..

Answer / trupti

use string buffers..
String buffers support mutable strings

Is This Answer Correct ?    7 Yes 1 No

String is immutable.it is true String can be change to mutable How?..

Answer / sharief

Yes,String is immutable.The simple meaning of immutable is
unmodifiable or unchangeable.once String object has been
created,its value can not be changed.
The Reason is java uses concept of String literal.Suppose
there are 5 reference variables,all referring to an object
called "Ronaldo".If one reference variable changes the value
of the object,it will be affected to all the reference
variables.That is why String objects are immutable in java.

Is This Answer Correct ?    1 Yes 0 No

String is immutable.it is true String can be change to mutable How?..

Answer / ilavarasan

String uses special type of memory in heap is known as
String constant pool.

Is This Answer Correct ?    0 Yes 0 No

String is immutable.it is true String can be change to mutable How?..

Answer / java

String s = "PROJECT";
String s2 = s.toLowerCase();

System.out.println(s.equals("PROJECT")); // Prints true
System.out.println(s.equals(s2)); // Prints false
In comparison, consider what would happen if Strings were mutable.

MutableString ms = "PROJECT";
MutableString ms2 = ms.toLowerCase();

System.out.println(ms.equals("PROJECT")); // Prints false
System.out.println(ms.equals(ms2)); // Prints true

Is This Answer Correct ?    0 Yes 0 No

String is immutable.it is true String can be change to mutable How?..

Answer / prathap

Because of String pooling String is immutable. Using StringBuffer we can change it as mutable. i.e.,This string literal reference is assaigened to StringBuffer object
Eg : String s="java";
     StringBuffer sb= new StringBuffer(s);

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Advanced Java Interview Questions

diff between jsp include directive and jsp action include?

2 Answers   SolutionNET,


What are the implicit objects?

2 Answers   HCL,


What is the purpose of the notify() method?

0 Answers  


What is a clone?

0 Answers  


what are the advantages of JTA over JTS?

0 Answers  


What is meant by multi-threading?

6 Answers  


What modifiers may be used with an inner class that is a member of an outer class?

0 Answers  


Why does the option tag render selected=selected instead of just selected?

0 Answers  


What are the design considerations while making a choice between using interface and abstract class?

0 Answers  


Difference between DurableSubscription and non- DurableSubscription?

0 Answers  


Java is fully object oriented languages or not?

0 Answers  


Is a class a subclass of itself?

0 Answers  


Categories