System类
Posted qiudajiang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了System类相关的知识,希望对你有一定的参考价值。
public class Demo3 { public static void main(String[] args) { //arrayCopy 数组复制 int[] src = {12, 34, 45, 56, 67, 45}; int[] dest = new int[8]; System.arraycopy(src, 0, dest, 0, src.length); //1.原数组 2.从哪个位置开始赋值 3.目标数组 4.目标数组的位置 5.复制的长度 for (int i = 0; i < dest.length; i++) { System.out.println(dest[i]); } //currentTimeMillis() 获取到现在的毫秒数 实现计时 long start = System.currentTimeMillis(); for (int i = -999999999; i < 9999999; i++) { for (int j = -999999; j < 9999999; j++) { int result = i + j; } } long end = System.currentTimeMillis(); System.out.println(end-start); //gc() 告诉垃圾回收器回收垃圾 //推出JVM System.exit(0); System.out.println("结束了"); } }
以上是关于System类的主要内容,如果未能解决你的问题,请参考以下文章
如何通过单击片段内的线性布局从片段类开始新活动?下面是我的代码,但这不起作用
关于mysql驱动版本报错解决,Cause: com.mysql.jdbc.exceptions.jdbc4Unknown system variable ‘query_cache_size(代码片段