java常用类--System类
2021-06-08 00:06
标签:就是 tostring 数组 mil time public ati java常用类 sys 1、System.currentTimeMillis() 2、System.arraycopy() java常用类--System类 标签:就是 tostring 数组 mil time public ati java常用类 sys 原文地址:https://www.cnblogs.com/huangwenchao0821/p/14541416.htmljava常用类--System类
常用方法
public class Demo07 {
/**
* currentTimeMillis返回从1970年开始到现在的一个时间戳,返回为long类型
*/
public static void main(String[] args) {
long time = System.currentTimeMillis();
System.out.println(time);
}
}
import java.util.Arrays;
public class Demo07 {
/**
* 将数组的中的一段数据赋值到数组2中
* 此代码中就是把arr1中的代码从1开始复制到arr2中2开始的位置,总共赋值3个长度
*/
public static void main(String[] args) {
int[] arr1 = {1,2,3,4,5,6};
int[] arr2 = {21,22,23,24,25,26};
System.arraycopy(arr1,1,arr2,2,3);
System.out.println(Arrays.toString(arr2));
}
}