System 类_hehe.employment.1.5

1.13 System 类的 currentTimeMillis 与 arraycopy 方法

  • java.lang.System 类:提供了大量的静态方法,可以获取与系统相关的信息或系统级操作
  • public static long currentTimeMillis() :返回以毫秒为单位的当前时间
  • 示例
        long s = System.currentTimeMillis();//以毫秒为单位返回当前时间
        System.out.println(s);//1610415176143
  • public static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length) :将 数组中指定的数据拷贝到另一个数组中。
参数名称 参数类型 参数含义
src Object 源数组
srcPos int 源数组索引起始位置
dest Object 目标数组
destPos int 目标数组索引起始位置
length int 复制元素个数
  • 示例:
		int[] src = {1,2,3,4,5};//源数组
        int[] dest = {6,7,8,9,10};//目标数组
        System.out.println("复制前"+ Arrays.toString(dest));//复制前[6, 7, 8, 9, 10]
        System.arraycopy(src,0,dest,0,3);//源数组指定数据拷贝到目标数组
        System.out.println("复制后"+ Arrays.toString(dest));//复制后[1, 2, 3, 9, 10]

你可能感兴趣的:(#,间接二步,java)