标签:img 环境 运行程序 情况下 print 数据 多个 dex 内存分配
版权声明:源出处:尚硅谷JVM
博客来源于大佬整理
/**
* 测试-XX:UseTLAB参数是否开启的情况:默认情况是开启的
*/
public class TLABArgsTest {
public static void main(String[] args) {
System.out.println("我只是来打个酱油~");
try {
Thread.sleep(1000000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
标签:img 环境 运行程序 情况下 print 数据 多个 dex 内存分配
原文地址:https://www.cnblogs.com/superxuezhazha/p/13329112.html