Java
Programming and Technical
Programming
Definition
Q. What is mutable object and immutable object?
A. If a object value is changeable then we can call it as Mutable object. (Ex., String Buffer, If you are not allowed to change the value of an object, it is immutable object. (Ex., String, Integer, Float, -)
Read Solution (Total 1)
-
- immutable object : if once object is created we can't change value of attributes.
mutable : if object created we can change value of attribute.. - 10 years agoHelpfull: Yes(0) No(0)
Java Other Question