Another way for Java to deeply clone a clone object or container

Source: Internet
Author: User

This page address: http://blog.csdn.net/lpy3654321/article/details/43054557

Another way to Java deep clone objects

public static <T> t deepcopy (t src) throws IOException, classnotfoundexception{           bytearrayoutputstream byteout = new Bytearrayoutputstream ();           ObjectOutputStream out = new ObjectOutputStream (byteout);           Out.writeobject (SRC);                  Bytearrayinputstream Bytein = new Bytearrayinputstream (Byteout.tobytearray ());           ObjectInputStream in =new ObjectInputStream (Bytein);           T dest = (t) in.readobject ();           return dest;       

The premise is that the passed object, as well as the contained object needs to implement the Java.io.Serializable serialization interface


Reprint: http://blog.csdn.net/applepop/article/details/5702432

Another way for Java to deeply clone a clone object or container

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.