System类

import javax.swing.plaf.synth.SynthLookAndFeel;

public class Demo01 {
public static void main(String[] args){
//1.arraycopy:数组复制
//src:源数组
//srcPos:从源数组哪个位置开始复制
//dest:目标数组
//destPos:从目标数组哪个位置开始放
//length:复制的长度
int[] array={1,2,3,4,5,6,7,8};
int[] dest = new int[8];
System.arraycopy(array,0,dest,0,4);
for (int i = 0; i <dest.length ; i++) {
System.out.print(dest[i]+"\t");//1 2 3 4 0 0 0 0
}

//2.System.currentTimeMillis();获取当前时间的毫秒数 作用:可计时
long start = System.currentTimeMillis();
for (int i = -999999999; i <999999999 ; i++) {
for (int j = -999999999; j <999999999 ; j++) {
int result = i + j;
}
}
long end =System.currentTimeMillis();
System.out.println("用时:"+(end-start));//用时:11(毫秒)

//3.System.gc();通知jvm回收垃圾
new Student("a",18);
new Student("b",19);
new Student("c",20);

System.gc();
/*
a回收了
c回收了
b回收了
*/

//4.System.exit(0);退出jvm
System.exit(0);
System.out.println("程序结束");//已经退出jvm,后面的不再执行
}

}


public class Student {
private String name;
private int age;

public Student() {

}

public Student(String name, int age) {
this.name = name;
this.age = age;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public int getAge() {
return age;
}

public void setAge(int age) {
this.age = age;
}

@Override
protected void finalize() throws Throwable {
System.out.println(this.name+"回收了");
}
}

posted @   惊鸿宴远赴人间  阅读(12)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 零经验选手,Compose 一天开发一款小游戏!
· 一起来玩mcp_server_sqlite,让AI帮你做增删改查!!
点击右上角即可分享
微信分享提示