|
INTERVIEW QUESTIONS
J2EE
JAVA
DETAILS
Question: Why Strings in Java are called as Immutable?
Answer: string objects are called immutable as once value has been assigned to a string, it can’t be changed and if changed, a new object is created.
In below example, reference str refers to a string object having value “Value one”.
String str="Value One"; 1 String str="Value One";
When a new value is assigned to it, a new String object gets created and the reference is moved to the new object.
str="New Value"; 1 str="New Value";
|
|
|
Category |
Java Interview Questions & Answers -
Exam Mode /
Learning Mode
|
Rating |
(0.3) By 6509 users |
Added on |
5/2/2016 |
Views |
66794 |
Rate it! |
|
|
Question:
Why Strings in Java are called as Immutable?
Answer:
string objects are called immutable as once value has been assigned to a string, it can’t be changed and if changed, a new object is created.
In below example, reference str refers to a string object having value “Value one”.
String str="Value One"; 1 String str="Value One";
When a new value is assigned to it, a new String object gets created and the reference is moved to the new object.
str="New Value"; 1 str="New Value"; Source: CoolInterview.com
If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
- There should not be any Spelling Mistakes.
- There should not be any Gramatical Errors.
- Answers must not contain any bad words.
- Answers should not be the repeat of same answer, already approved.
- Answer should be complete in itself.
|
|
Related Questions |
View Answer |
|
When the constructor of a class is invoked?
|
View Answer
|
|
How an object is serialized in java?
|
View Answer
|
|
What’s the difference between an Abstract Class and Interface in Java?
|
View Answer
|
|
What are 6 different types of operators in Java?
|
View Answer
|
|
What is ternary operator? Give an example.
|
View Answer
|
|
What is the difference between continue and break statement?
|
View Answer
|
|
What are Loops in Java? What are three types of loops?
|
View Answer
|
|
What’s the purpose of Static methods and static variables?
|
View Answer
|
|
What are the various access specifiers for Java classes?
|
View Answer
|
|
What is the difference between an Inner Class and a Sub-Class?
|
View Answer
|
|
can we write main method without static keyword in java main class, give an example
|
View Answer
|
|
Can we create object of Object class in java?
|
View Answer
|
|
what is the difference between java and c++
|
View Answer
|
|
Give me the example of how in real life example Thread is used...
|
View Answer
|
|
How should I start learning Advanced Java? Which books to refer ???
|
View Answer
|
|
Why should we use java?
|
View Answer
|
|
java does not support multiple inheritance because different classes may have different variable with same name that may be contradicted and can cause confusions resulting in errors.Java supports it through the interfaces.A class can extend one class and can implement more than one interfaces also.those interfaces may have variables with same names.Wont they create confusion?
|
View Answer
|
|
static functions can call only other static functions and static variables then how does public static void main(String args[]) function is successful to call non-static functions and also non static variables?
|
View Answer
|
|
we have been taught that whenever an object is created it always invokes a constructor, if not defined in the class then the compiler implicitly invokes it. why??? if there is a parameterized constructor in the class then the compiler does not provide the default constructor why?????
|
View Answer
|
|
can there be an abstact class with no abstact methods in it?
|
View Answer
|