Q1) What is an immutable class?
Ans) Immutable class is a class which once created, it’s contents can not be changed.
Immutable objects are the objects whose state can not be changed once constructed.
e.g. String class
|
Q2) How to create an immutable class?
Ans) To create an immutable class following steps should be followed:
public final class FinalPersonClass { private final String name; private final int age; public FinalPersonClass(final String name, final int age) { super(); this.name = name; this.age = age; } public int getAge() { return age; } public String getName() { return name; } } |
Q3) Immutable objects are automatically thread-safe –true/false?
Ans) True. Since the state of
the immutable objects can not be changed once they are created they are
automatically synchronized/thread-safe.
|
Q4) Which classes in java are immutable?
Ans) All wrapper classes in java.lang are immutable –
String, Integer, Boolean, Character, Byte, Short, Long, Float, Double, BigDecimal, BigInteger |
Q5) What are the advantages of immutability?
Ans) The advantages are:
1) Immutable objects are automatically thread-safe, the overhead caused due to use of synchronisation is avoided. 2) Once created the state of the immutable object can not be changed so there is no possibility of them getting into an inconsistent state. 3) The references to the immutable objects can be easily shared or cached without having to copy or clone them as there state can not be changed ever after construction. 4) The best use of the immutable objects is as the keys of a map. |
Thursday, 11 July 2013
Immutable Class Interview Questions
Subscribe to:
Post Comments (Atom)
Really Helpfull question ?
ReplyDelete