public class Bicycle {
...
public static int INSTANCES = 0;
...
//constructor
public Bicycle(int gear, int speed, int seatHeight, String color) {
gear = 0;
speed = 0;
seatHeight = 0;
color ="Unknown";
Bicycle.INSTANCES++;
}
protected void finalize() {
INSTANCES--;
}
}
a. System.gc();
b. Runtime.getRuntime.gc();
No comments:
Post a Comment