128 lines
3.3 KiB
Java
128 lines
3.3 KiB
Java
// references/DeepCopy.java
|
|
// (c)2016 MindView LLC: see Copyright.txt
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
|
|
// Cloning a composed object.
|
|
// (Install libraries from www.junit.org)
|
|
import org.junit.Test;
|
|
import static org.junit.Assert.assertEquals;
|
|
|
|
class DepthReading implements Cloneable {
|
|
private double depth;
|
|
public DepthReading(double depth) {
|
|
this.depth = depth;
|
|
}
|
|
@Override
|
|
public Object clone() {
|
|
Object o = null;
|
|
try {
|
|
o = super.clone();
|
|
} catch(CloneNotSupportedException e) {
|
|
throw new RuntimeException(e);
|
|
}
|
|
return o;
|
|
}
|
|
public double getDepth() { return depth; }
|
|
public void setDepth(double depth){
|
|
this.depth = depth;
|
|
}
|
|
@Override
|
|
public String toString() {
|
|
return String.valueOf(depth);
|
|
}
|
|
}
|
|
|
|
class TemperatureReading implements Cloneable {
|
|
private long time;
|
|
private double temperature;
|
|
public TemperatureReading(double temperature){
|
|
time = System.currentTimeMillis();
|
|
this.temperature = temperature;
|
|
}
|
|
@Override
|
|
public Object clone() {
|
|
Object o = null;
|
|
try {
|
|
o = super.clone();
|
|
} catch(CloneNotSupportedException e) {
|
|
throw new RuntimeException(e);
|
|
}
|
|
return o;
|
|
}
|
|
public double getTemperature() {
|
|
return temperature;
|
|
}
|
|
public void setTemperature(double temp) {
|
|
this.temperature = temp;
|
|
}
|
|
@Override
|
|
public String toString() {
|
|
return String.valueOf(temperature);
|
|
}
|
|
}
|
|
|
|
class OceanReading implements Cloneable {
|
|
private DepthReading depth;
|
|
private TemperatureReading temperature;
|
|
public
|
|
OceanReading(double tdata, double ddata) {
|
|
temperature = new TemperatureReading(tdata);
|
|
depth = new DepthReading(ddata);
|
|
}
|
|
@Override
|
|
public Object clone() {
|
|
OceanReading o = null;
|
|
try {
|
|
o = (OceanReading)super.clone();
|
|
} catch(CloneNotSupportedException e) {
|
|
throw new RuntimeException(e);
|
|
}
|
|
// Must clone references:
|
|
o.depth = (DepthReading)o.depth.clone();
|
|
o.temperature =
|
|
(TemperatureReading)o.temperature.clone();
|
|
return o; // Upcasts back to Object
|
|
}
|
|
public TemperatureReading getTemperatureReading() {
|
|
return temperature;
|
|
}
|
|
public void setTemperatureReading(TemperatureReading tr){
|
|
temperature = tr;
|
|
}
|
|
public DepthReading getDepthReading() { return depth; }
|
|
public void setDepthReading(DepthReading dr) {
|
|
this.depth = dr;
|
|
}
|
|
@Override
|
|
public String toString() {
|
|
return "temperature: " + temperature +
|
|
", depth: " + depth;
|
|
}
|
|
}
|
|
|
|
public class DeepCopy {
|
|
@Test
|
|
public void testClone() {
|
|
OceanReading reading =
|
|
new OceanReading(33.9, 100.5);
|
|
// Now clone it:
|
|
OceanReading clone =
|
|
(OceanReading)reading.clone();
|
|
TemperatureReading tr =
|
|
clone.getTemperatureReading();
|
|
tr.setTemperature(tr.getTemperature() + 1);
|
|
clone.setTemperatureReading(tr);
|
|
DepthReading dr = clone.getDepthReading();
|
|
dr.setDepth(dr.getDepth() + 1);
|
|
clone.setDepthReading(dr);
|
|
assertEquals(reading.toString(),
|
|
"temperature: 33.9, depth: 100.5");
|
|
assertEquals(clone.toString(),
|
|
"temperature: 34.9, depth: 101.5");
|
|
}
|
|
public static void main(String[] args) {
|
|
org.junit.runner.JUnitCore.runClasses(
|
|
DeepCopy.class);
|
|
}
|
|
}
|