在 Java 中复制对象

2022-09-02 02:12:10

我有一个对象,我需要在Java中复制。我需要创建一个副本并在不更改原始对象本身的情况下对其进行一些测试。

我以为我需要使用 clone() 方法,但这是受保护的。在网络上做了一些研究后,我可以看到这可以在我的课堂上使用公共方法覆盖。但是我找不到如何做到这一点的解释。这是怎么做到的呢?

此外,这是实现我需要的最佳方式吗?


答案 1

使用复制构造函数的另一个选项(来自 Java 实践):

public final class Galaxy {

    public Galaxy (double aMass, String aName) {
        fMass = aMass;
        fName = aName;
    }

    /**
    * Copy constructor.
    */
    public Galaxy(Galaxy aGalaxy) {
        this(aGalaxy.getMass(), aGalaxy.getName());
        //no defensive copies are created here, since 
        //there are no mutable object fields (String is immutable)
    }

    /**
    * Alternative style for a copy constructor, using a static newInstance
    * method.
    */
    public static Galaxy newInstance(Galaxy aGalaxy) {
        return new Galaxy(aGalaxy.getMass(), aGalaxy.getName());
    }

    public double getMass() {
        return fMass;
    }

    /**
    * This is the only method which changes the state of a Galaxy
    * object. If this method were removed, then a copy constructor
    * would not be provided either, since immutable objects do not
    * need a copy constructor.
    */
    public void setMass( double aMass ){
        fMass = aMass;
    }

    public String getName() {
        return fName;
    }

    // PRIVATE /////
    private double fMass;
    private final String fName;

    /**
    * Test harness.
    */
    public static void main (String... aArguments){
        Galaxy m101 = new Galaxy(15.0, "M101");

        Galaxy m101CopyOne = new Galaxy(m101);
        m101CopyOne.setMass(25.0);
        System.out.println("M101 mass: " + m101.getMass());
        System.out.println("M101Copy mass: " + m101CopyOne.getMass());

        Galaxy m101CopyTwo = Galaxy.newInstance(m101);
        m101CopyTwo.setMass(35.0);
        System.out.println("M101 mass: " + m101.getMass());
        System.out.println("M101CopyTwo mass: " + m101CopyTwo.getMass());
    }
} 

答案 2

有两种流行的方法。一种是提供您提到的方法,如下所示。clone

public class C implements Cloneable {
    @Override public C clone() {
        try {
            final C result = (C) super.clone();
            // copy fields that need to be copied here!
            return result;
        } catch (final CloneNotSupportedException ex) {
            throw new AssertionError();
        }
}

注意“复制字段...这里!“部分。初始值只是一个浅层副本,这意味着如果存在对某个对象的引用,则原始对象和将共享同一对象。例如,如果包含,您可能希望复制它。resultresultCprivate int[] data

...
final C result = (C) super.clone();
result.data = data.clone();
return result;
...

请注意,您不需要复制基元字段,因为它们的内容已被复制,也不需要复制不可变的对象,因为它们无论如何都无法更改。

第二种方法是提供复制构造函数。

public class C {
    public C(final C c) {
        // initialize this with c
    }
}

或复制工厂。

public class C {
    public static C newInstance(final C c) {
        return new C(c);
    }

    private C(final C c) {
        // initialize this with c
    }
}

这两种方法都有各自的属性。 很好,因为它是一种方法,所以你不必知道确切的类型。最后,您应该始终以“完美”的副本结束。复制构造函数很好,因为调用方有机会做出决定,正如Java集合所看到的那样。clone

final List c = ... 
// Got c from somewhere else, could be anything.
// Maybe too slow for what we're trying to do?

final List myC = new ArrayList(c);
// myC is an ArrayList, with known properties

我建议选择任何一种方法,无论哪种方式都更适合您。

我只在单元测试中使用其他方法,如反射式复制或立即序列化/反序列化。对我来说,它们感觉不太适合生产代码,主要是因为性能问题。