package a1;
/********************************************************
H:\DATI\Studi\JAVA\a1>java -cp classes a1.Runtime_1
freeMemory: 1866000
totalMemory: 2031616
*********************************************************/
import java.io.*;
public class Runtime_1 {
public Runtime_1() {
Runtime r = Runtime.getRuntime();
System.out.println( "freeMemory: " + r.freeMemory() );
System.out.println( "totalMemory: " + r.totalMemory() );
}
public static void main(String[] args) {
Runtime_1 r1 = new Runtime_1();
System.runFinalization();
}
}
|