如何让订阅号菜单做微网站百度点击工具
System类常见方法
① exit 退出当前程序
public static void main(String[] args) {System.out.println("ok1");//0表示状态,即正常退出System.exit(0);System.out.println("ok2");}
② arraycopy 复制数组元素
复制的数组元素个数必须<=原数组中元素的个数;
目标数组中的元素个数必须>=复制过来的元素的个数
本质是从数组1中复制元素来替换数组2中的元素;
③ currentTimeMillis 返回当前时间距离1970-1-1的毫秒数
System.out.println(System.currentTimeMillis());