系统类 System

System:全是静态的属性和行为。

  • 属性:
    out:标准输出流,默认对应显示器
    in:标准输入流,默认对应键盘

  • 方法
    currentTimeMillis() 返回毫秒,当前时间到1970.1.1的毫秒数

  • getProperties()方法 ,获取系统信息

public class SystemTest {
    public static void main(String[] args) {
        long time = System.currentTimeMillis();
        System.out.println(time);
        //System getProperties();
        Properties p = System.getProperties();
        p.list(System.out);
    }
}

你可能感兴趣的:(系统类 System)