package cn.itcast_01;
import java.util.random;
/*
* random:产生随机数的类
*
* 构造方法:
* public random():没有给种子,用的是默认种子,是当前时间的毫秒值
* public random(long seed):给出指定的种子
*
* 给定种子后,每次得到的随机数是相同的。
*
* 成员方法:
* public int nextint():返回的是int范围内的随机数
* public int nextint(int n):返回的是[0,n)范围的内随机数
*/
public class randomdemo {
public static void main(string[] args) {
// 创建对象
// random r = new random();
random r = new random(1111);
for (int x = 0; x < 10; x++) {
// int num = r.nextint();
int num = r.nextint(100) + 1;
system.out.println(num);
}
}
}
system类
系统类,提供了一些有用的字段和方法
运行垃圾回收器
package cn.itcast_01;
public class person {
private string name;
private int age;
public person() {
super();
}
public person(string name, int age) {
super();
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
public string tostring() {
return "person [name=" + name + ", age=" + age + "]";
}
@override
protected void finalize() throws throwable {
system.out.println("当前的对象被回收了" + this);
super.finalize();
}
}
package cn.itcast_01;
/*
* system类包含一些有用的类字段和方法。它不能被实例化。
*
* 方法:
* public static void gc():运行垃圾回收器。
* public static void exit(int status)
* public static long currenttimemillis()
* public static void arraycopy(object src,int srcpos,object dest,int destpos,int length)
*/
public class systemdemo {
public static void main(string[] args) {
person p = new person("赵雅芝", 60);
system.out.println(p);
p = null; // 让p不再指定堆内存
system.gc();
}
}
退出jvm,获取当前时间的毫秒值
package cn.itcast_02;
/*
* system类包含一些有用的类字段和方法。它不能被实例化。
*
* 方法:
* public static void gc():运行垃圾回收器。
* public static void exit(int status):终止当前正在运行的 java 虚拟机。参数用作状态码;根据惯例,非 0 的状态码表示异常终止。
* public static long currenttimemillis():返回以毫秒为单位的当前时间
* public static void arraycopy(object src,int srcpos,object dest,int destpos,int length)
*/
public class systemdemo {
public static void main(string[] args) {
// system.out.println("我们喜欢林青霞(东方不败)");
// system.exit(0);
// system.out.println("我们也喜欢赵雅芝(白娘子)");
// system.out.println(system.currenttimemillis());
// 单独得到这样的实际目前对我们来说意义不大
// 那么,它到底有什么作用呢?
// 要求:请大家给我统计这段程序的运行时间
long start = system.currenttimemillis();
for (int x = 0; x < 100000; x++) {
system.out.println("hello" + x);
}
long end = system.currenttimemillis();
system.out.println("共耗时:" + (end - start) + "毫秒");
}
}