java_15 System类

Posted CHAHN

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java_15 System类相关的知识,希望对你有一定的参考价值。

1.System类

  

2.System类方法

  (1)currentTimeMillis()
  

    public static void main(String[] args) {
		long start = System.currentTimeMillis();
		for (int i = 0; i < 10000; i++) {
			System.out.println(i);
		}
		long end = System.currentTimeMillis();
		System.out.println("------------");
		System.out.println(end - start);
	}

 
    (2)arraycopy(Object src, int srcPos, Object dest, int destPos, int length):   复制数组到目标数组

    public static void main(String[] args) {
		int[] arr = {23,56,12,65,98};			//定义arr数组
		int[] resu = new int[3];				//定义长度为3的resu数组
		Arrays.sort(arr);						//将arr数组从小到大排序
		System.arraycopy(arr, 0, resu, 0, 3);//将arr数组中前3 个,即最小的3位数赋值给resu数组
		for (int i = 0; i < resu.length; i++) {	//打印
			System.out.print(resu[i]+"\\t");
		}
	}

 

  (2)exit ();


  (3)gc()


  (4)getProperties()



以上是关于java_15 System类的主要内容,如果未能解决你的问题,请参考以下文章

15_Java筑基之Object类多态

03-15_内部类

Atom编辑器折腾记_(15)JS代码片段补全(插件:javascript-snippets)

java基础_静态代码块

31.Java基础_日期/日期格式/日历类

VSCode 配置 用户自定义代码片段 自定义自动代码补充