Why serialVersionUID should be defined for Object serialization,

Source: Internet
Author: User
Tags object serialization

Why serialVersionUID should be defined for Object serialization,

For entity classes that implement the java. io. Serializable interface, serialVersionUID is often manually declared, because if you implement serialization, java will add a serialVersionUID to the object class by default.

By default, the added serialVersionUID varies according to the changes in the member (member variable, member method) of the object class.

Why should I declare a serialVersionUID?

After the object class is serialized locally, if the object class members change, the added serialVersionUID will change by default. In this case, the serialVersionUID of the serialized object on the hard disk is not the same as the serialVersionUID in the object class, and an exception occurs during deserialization:

Exception in thread "main" java. io. InvalidClassException: Person; local class incompatible: stream classdesc serialVersionUID = 8383901821872620925, local class serialVersionUID =-763618247875550322

Therefore, SerialVersionUID is manually declared for entity classes that implement the serialVersionUID interface.

Private static final long serialVersionUID = 1L;

The above code can be used.

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.