system类

124 阅读1分钟

1.system类:

  • 终止当前运行的java虚拟机:

    System.exit(0);
    
  • 返回当前时间---当前时间和1970年之间的毫秒值:

    System.currentTimeMillis();
    
  • 复制数组:

    System.arraycopy(arrs,0,res,1,5);  //复制arr数组从下标0开始到res数组以下标1,长度为5