最近开始学习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());
	}
}

  

相关文章:

  • 2021-09-12
猜你喜欢
  • 2022-12-23
  • 2021-05-18
  • 2021-06-29
  • 2021-11-23
相关资源
相似解决方案