Monday, 12 September 2016

serialization - What is Serial Version ID in Java?


Possible Duplicates:
Why should I bother about serialVersionUID?
what is a serial version id?






When i created a new class extending java.util.logging.Level in Eclipse, It asked me to add a default or generated serial version ID. I just added blindly without knowing what it is and why I have to add it.




Can anybody tell me what is it and why it its required.

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...