zoukankan      html  css  js  c++  java
  • java中Runtime类详细介绍

    Runtime类描述了虚拟机一些信息。该类采用了单例设计模式,可以通过静态方法 getRuntime()获取Runtime类实例。下面演示了获取虚拟机的内存信息:

    package Main;
     
    public class Main
    {
        public static void main(String[] args) throws Exception
        {
            Runtime runtime = Runtime.getRuntime();
            System.out.println("total memory:"+runtime.totalMemory()/(1024*1024) + "M");
            System.out.println("max memory:" + runtime.maxMemory()/(1024*1024) + "M");
            System.out.println("free memory:" + runtime.freeMemory()/(1024*1024) + "M");
            System.out.println("Main Done//~~");
        }
    }
    

    输出结果:

    total memory:230M
    max memory:3403M
    free memory:226M
    Main Done//~~
    

    Runtime类提供gc()方法,用于释放Java虚拟机的一些无用空间。gc是garbage collection的缩写,就是垃圾回收的意思。

    package Main;
     
    public class Main
    {
        public static void main(String[] args) throws Exception
        {
            Runtime runtime = Runtime.getRuntime();
            runtime.gc();
            System.out.println("Main Done//~~");
        }
    }
    

    Runtime类可以调用本机的一些可执行程序,并且创建进程。exec(String cmd)方法可以打开一个可执行程序,下面代码演示了打开windows记事本程序并5秒后关闭。

    package Main;
     
    public class Main
    {
        public static void main(String[] args) throws Exception
        {
            Runtime runtime = Runtime.getRuntime();
            Process process = runtime.exec("notepad");
            Thread.sleep(1000*5);
            process.destroy();
            System.out.println("Main Done//~~");
        }
    }
    
  • 相关阅读:
    Save the problem!
    Divisiblity of Differences
    定个小目标
    Faulty Robot
    反片语 uva 156(map的使用
    Input is terminated by EOF.
    uva10815 andy的字典(set的应用)
    uva-101 搬砖问题(不定长数组vector的使用)
    回文串uva401(清简出风尘)
    WERTYU (善用常量数组
  • 原文地址:https://www.cnblogs.com/a1439775520/p/12947016.html
Copyright © 2011-2022 走看看