博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java 中String类的intern方法
阅读量:5775 次
发布时间:2019-06-18

本文共 1448 字,大约阅读时间需要 4 分钟。

hot3.png

intern()方法设计的初衷,就是重用String对象,以节省内存消耗。

public class InternTest {	    static final int MAX = 100000;      static final String[] arr = new String[MAX];            public static void main(String[] args) throws Exception {          Integer[] sample = new Integer[10];          Random random = new Random(1000);          for (int i = 0; i < sample.length; i++) {              sample[i] = random.nextInt();          }          long t = System.currentTimeMillis();              for (int i = 0; i < MAX; i++) {                  //arr[i] = new String(String.valueOf(sample[i % sample.length]));                  arr[i] = new String(String.valueOf(sample[i % sample.length])).intern();              }              System.out.println((System.currentTimeMillis() - t) + "ms");              System.gc();      }  }

这个例子也比较简单,就是为了证明使用intern()比不使用intern()消耗的内存更少。

先定义一个长度为10的Integer数组,并随机为其赋值,在通过for循环为长度为10万的String对象依次赋值,这些值都来自于Integer数组。两种情况分别运行,可通过Window ---> Preferences --> Java --> Installed JREs设置JVM启动参数为-agentlib:hprof=heap=dump,format=b,将程序运行完后的hprof置于工程目录下。再通过MAT插件查看该hprof文件。

 

从运行结果来看,不使用intern()的情况下,程序生成了101762个String对象,而使用了intern()方法时,程序仅生成了1772个String对象。自然也证明了intern()节省内存的结论。

细心的同学会发现使用了intern()方法后程序运行时间有所增加。这是因为程序中每次都是用了new String后又进行intern()操作的耗时时间,但是不使用intern()占用内存空间导致GC的时间是要远远大于这点时间的。 

注意:JDK1.7后,常量池被放入到堆空间中,这导致intern()函数的功能不同,具体怎么个不同法

JDK1.6以及以前版本中,常量池是放在 Perm 区(属于方法区)中的,熟悉JVM的话应该知道这是和堆区完全分开的。

 

 

转载于:https://my.oschina.net/ferchen/blog/1624327

你可能感兴趣的文章
如何 debug Proxy.pac文件
查看>>
Python 学习笔记 - 面向对象(特殊成员)
查看>>
Kubernetes 1.11 手动安装并启用ipvs
查看>>
Puppet 配置管理工具安装
查看>>
Bug多,也别乱来,别被Bug主导了开发
查看>>
sed 替换基础使用
查看>>
高性能的MySQL(5)创建高性能的索引一B-Tree索引
查看>>
附件3:eclipse memory analyze使用教程
查看>>
oracle备份与恢复--rman
查看>>
图片变形的抗锯齿处理方法
查看>>
Effective C++ Item 32 确保你的 public 继承模子里出来 is-a 关联
查看>>
phpstorm安装laravel-ide-helper实现自动完成、代码提示和跟踪
查看>>
Resume简历中装B的词汇总结大全
查看>>
python udp编程实例
查看>>
TortoiseSVN中图标的含义
查看>>
js原生继承之——构造函数式继承实例
查看>>
linux定时任务的设置
查看>>
[CareerCup] 13.3 Virtual Functions 虚函数
查看>>
[Angular 2] ng-model and ng-for with Select and Option elements
查看>>
Visio中如何让重叠图形都显示
查看>>