what is the use of Clonable,and serializable interface?
Answer Posted / amit singh
serialzable and cloneable interface both are marker
interface
Cloneable interface:
if any class implements this interface .so this interface
its just a indicator or marker that a particular class
going touse clone() of the Object class to field tio field
copy of the instance ofthe particular class.
Serializable:
its also the interface .if any class implements it so means
that this particular class object convert in byte and going
to save in a locakl disk
and also its useful to send object in a Byteform to the
network.
and at the another network it will convert from byte to
Object of particular type.
| Is This Answer Correct ? | 48 Yes | 5 No |
Post New Answer View All Answers
Does java return by reference?
What is var keyword ?
What is a numeric literal?
How we can run a jar file through command prompt in java?
What is an object class?
How to read and write image from a file ?
Why is stringbuffer faster than string?
Why char array is favored over string for the storage of passwords?
What do you mean by hashing?
What are java annotations?
'A class is a template for an object' explain this statement.
What are keywords in programming?
What are selection structures?
What is public static void main?
If an object reference is set to null, will the garbage collector immediately free the memory held by that object?