62 lines
1.5 KiB
Java
62 lines
1.5 KiB
Java
|
//: polymorphism/ReferenceCounting.java
|
|||
|
// <20>2015 MindView LLC: see Copyright.txt
|
|||
|
// Cleaning up shared member objects.
|
|||
|
import static com.mindviewinc.util.Print.*;
|
|||
|
|
|||
|
class Shared {
|
|||
|
private int refcount = 0;
|
|||
|
private static long counter = 0;
|
|||
|
private final long id = counter++;
|
|||
|
public Shared() {
|
|||
|
print("Creating " + this);
|
|||
|
}
|
|||
|
public void addRef() { refcount++; }
|
|||
|
protected void dispose() {
|
|||
|
if(--refcount == 0)
|
|||
|
print("Disposing " + this);
|
|||
|
}
|
|||
|
@Override
|
|||
|
public String toString() { return "Shared " + id; }
|
|||
|
}
|
|||
|
|
|||
|
class Composing {
|
|||
|
private Shared shared;
|
|||
|
private static long counter = 0;
|
|||
|
private final long id = counter++;
|
|||
|
public Composing(Shared shared) {
|
|||
|
print("Creating " + this);
|
|||
|
this.shared = shared;
|
|||
|
this.shared.addRef();
|
|||
|
}
|
|||
|
protected void dispose() {
|
|||
|
print("disposing " + this);
|
|||
|
shared.dispose();
|
|||
|
}
|
|||
|
@Override
|
|||
|
public String toString() { return "Composing " + id; }
|
|||
|
}
|
|||
|
|
|||
|
public class ReferenceCounting {
|
|||
|
public static void main(String[] args) {
|
|||
|
Shared shared = new Shared();
|
|||
|
Composing[] composing = { new Composing(shared),
|
|||
|
new Composing(shared), new Composing(shared),
|
|||
|
new Composing(shared), new Composing(shared) };
|
|||
|
for(Composing c : composing)
|
|||
|
c.dispose();
|
|||
|
}
|
|||
|
} /* Output:
|
|||
|
Creating Shared 0
|
|||
|
Creating Composing 0
|
|||
|
Creating Composing 1
|
|||
|
Creating Composing 2
|
|||
|
Creating Composing 3
|
|||
|
Creating Composing 4
|
|||
|
disposing Composing 0
|
|||
|
disposing Composing 1
|
|||
|
disposing Composing 2
|
|||
|
disposing Composing 3
|
|||
|
disposing Composing 4
|
|||
|
Disposing Shared 0
|
|||
|
*///:~
|