最近开始学习Java,java编程思想的确是本好书。现在看到第二章了,
按照示例代码敲出来:
import java.util.*; public class Example { public static void main(String[] args) { System.out.println (new Date()); System.out.println("Memeory"); Runtime rt = Runtime.getRuntime(); System.out.println("Tot Memory: " + rt.totalMemory() + "Free Memory" + rt.freeMemory()); } }