为什么会写这篇文章,可能是为了帮你回顾上面文章中用于设置线程池coreSize大小的核心线程数。
我们开始进入正题吧,每个java程序在运行时相当于起了一个JVM进程,每个JVM进程都对应着一个RunTime实例。因此对于RunTime这么一个类来说,它的实例化是有JVM负责的,所以我们不能手动new就可以实例化一个RunTime实例对象出来。
相反,它以一种非常友好的方式返回你需要的RunTime实例,那就是静态工厂方法,需要了解静态工厂方法的建议先看下面的这篇文章,java的静态工厂方法。
好了,我们开始分析一下这个类吧,我们看看它提供的方法进行掌握一下就可以了。还是一贯的风格,我们还是先看示例程序咯。
public static Runtime getRuntime() {
return currentRuntime;
}
接下来就是currentRuntime对象是什么了,怎么出来的?
private static Runtime currentRuntime = new Runtime();
/** Don't let anyone else instantiate this class */
private Runtime() {}
上面的方法就是如何实例化一个RunTime实例。接下来我们看看这个类提供给我们的方法都有哪些吧。
public static void main(String[] args) {
Runtime runtime = Runtime.getRuntime();
int availableProcessors = runtime.availableProcessors();
System.out.println("availableProcessors = " + availableProcessors);//availableProcessors = 4
}
由于自己的电脑是4核的处理器,所以当我们根据上面的执行结果可以很快知道自己的处理器核数,下面我们继续看看其他方法吧。
我们先看下如何获取总内存的大小的方法。因为默认返回的是字节所以为了方便我们自己阅读,我在这里进行了转换,具体的大小还是在自己本机进行测试咯。
public static void main(String[] args) {
Runtime runtime = Runtime.getRuntime();
int availableProcessors = runtime.availableProcessors();
System.out.println("availableProcessors = " + availableProcessors);
long totalMemory = runtime.totalMemory() / 1024 / 1024;
System.out.println("totalMemory = " + totalMemory + "M");//123M
}
我们在看看freeMemory方法的使用吧,我们先看下程序好了。
public static void main(String[] args) {
Runtime runtime = Runtime.getRuntime();
int availableProcessors = runtime.availableProcessors();
System.out.println("availableProcessors = " + availableProcessors);
long totalMemory = runtime.totalMemory() / 1024 / 1024;
System.out.println("totalMemory = " + totalMemory + "M");//totalMemory = 123M
// byte[] bytes = new byte[1024 *1024* 10];
long freeMemory = runtime.freeMemory() / 1024 / 1024;
System.out.println("freeMemory = " + freeMemory + "M");//freeMemory = 118M
}
我们看到总内存大小和空闲内存大小分别为123M和118M,然而我们执行下面的方法,我们再次看下我们的空闲内存是多少?
public static void main(String[] args) {
Runtime runtime = Runtime.getRuntime();
int availableProcessors = runtime.availableProcessors();
System.out.println("availableProcessors = " + availableProcessors);
long totalMemory = runtime.totalMemory() / 1024 / 1024;
System.out.println("totalMemory = " + totalMemory + "M");//totalMemory = 123M
byte[] bytes = new byte[1024 *1024* 10];
long freeMemory = runtime.freeMemory() / 1024 / 1024;
System.out.println("freeMemory = " + freeMemory + "M");//freeMemory = 108M
}
由于上面我们在给byte字节数组开辟了10M大小的内存空间,所以在输出空闲内存为108M,我们继续给字节数组分配大小吧,这里做了一下实验,当我分配80M时,打印的结果如下。
public static void main(String[] args) {
Runtime runtime = Runtime.getRuntime();
int availableProcessors = runtime.availableProcessors();
System.out.println("availableProcessors = " + availableProcessors);
long totalMemory = runtime.totalMemory() / 1024 / 1024;
System.out.println("totalMemory = " + totalMemory + "M");//totalMemory = 123M
byte[] bytes = new byte[1024 *1024* 80];
long freeMemory = runtime.freeMemory() / 1024 / 1024;
System.out.println("freeMemory = " + freeMemory + "M");//freeMemory = 38M
}
然而,当我分配90M时,打印出来118M,这时我觉得它利用了本机的物理内存来保证空闲内存的大小。具体还是以后用到之后再来继续测试了。
接下来我们继续看其他的方法。
public static void main(String[] args) {
Runtime runtime = Runtime.getRuntime();
int availableProcessors = runtime.availableProcessors();
System.out.println("availableProcessors = " + availableProcessors);
runtime.addShutdownHook(new MyThread());
}
static class MyThread extends Thread {
@Override
public void run() {
System.out.println("Jvm退出");
}
}
上面我们调用了这个钩子方法,然后输出了一句JVM退出,其实这个方法不是很常见,但是自己经常使用,也算是在这里给你分享了自己会的东西了,坏笑。
我们看下获取最大内存的方法。
public static void main(String[] args) {
Runtime runtime = Runtime.getRuntime();
int availableProcessors = runtime.availableProcessors();
System.out.println("availableProcessors = " + availableProcessors);
runtime.addShutdownHook(new MyThread());
long maxMemory = runtime.maxMemory()/1024/1024;
System.out.println("maxMemory = " + maxMemory+"M");//444M
}
介绍在最后一个方法,我们这篇文章就结束了,这个方法在这里我们没法给你演示效果,这个可以执行外部命令。
runtime.exec();
由于上面的方法都是native关键字进行修饰的,所以不是运行在java方法栈的,而是运行在本地方法栈的,需要了解jvm文章的可以阅读公众号以前关于jvm文章的内容。
好了,这篇文章就分享到这了,感谢你的阅读,喜欢文章的可以关注公众号,分享转发一下,让我们共同交流,喜欢的扫描下方二维码进行关注。