java字符串的substring真的会引起内存泄露么?-亚博电竞手机版

在java中开发,string是我们开发程序可以说必须要使用的类型,string有一个substring方法用来截取字符串,我们想必也常常使用。但是你知道么,关于java 6中的substring是否会引起内存泄露,在国外的论坛和社区有着一些讨论,以至于java官方已经将其标记成bug,并且为此java 7 还重新进行了实现。读到这里可能你的问题就来了,substring怎么会引起内存泄露呢?那么我们就带着问题,走进小黑屋,看看substring有没有内存泄露,又是怎么导致所谓的内存泄露。

基本介绍

substring方法提供两种重载,第一种为只接受开始截取位置一个参数的方法。

public string substring(int beginindex)

比如我们使用上面的方法,”unhappy”.substring(2) 返回结果 ”happy”

另一种重载就是接受一个开始截取位置和一个结束截取位置的参数的方法。

public string substring(int beginindex, int endindex)

使用这个方法,”smiles”.substring(1, 5) 返回结果 ”mile”

通过这个介绍我们基本了解了substring的作用,这样便于我们理解下面的内容。

准备工作

因为这个问题出现的情况在java 6,如果你的java版本号不是java 6 需要调整一下。

终端调整(适用于mac系统)

查看java版本号

13:03 $ java -version java version "1.8.0_25" java(tm) se runtime environment (build 1.8.0_25-b17) java hotspot(tm) 64-bit server vm (build 25.25-b02, mixed mode)

切换到1.6

export java_home=$(/usr/libexec/java_home -v 1.6)

ubuntu使用alternatives –config java,fedora上面使用alternatives –config java。

如果你使用eclipse,可以选择工程,右击,选择properties(属性)— java compiler(java编译器)进行特殊指定。

问题重现

这里贴一下java官方bug里用到的重现问题的代码。

public class testgc {     private string largestring = new string(new byte[100000]);      string getstring() {         return this.largestring.substring(0,2);     }      public static void main(string[] args) {         java.util.arraylist list = new java.util.arraylist();         for (int i = 0; i < 1000000; i  ) {             testgc gc = new testgc();             list.add(gc.getstring());         }     } }

然而上面的代码,只要使用java 6 (java 7和8 都不会抛出异常)运行一下就会报java.lang.outofmemoryerror: java heap space的异常,这说明没有足够的堆内存供我们创建对象,jvm选择了抛出异常操作。

于是有人会说,是因为你每个循环中创建了一个testgc对象,虽然我们加入arraylist只是两个字符的字符串,但是这个对象中又存储largestring这么大的对象,这样必然会造成oom的。

然而,其实你说的不对。比如我们看一下这样的代码,我们只修改getstring方法。

public class testgc {     private string largestring = new string(new byte[100000]);      string getstring() {         //return this.largestring.substring(0,2);       return new string("ab");     }      public static void main(string[] args) {         java.util.arraylist list = new java.util.arraylist();         for (int i = 0; i < 1000000; i  ) {             testgc gc = new testgc();             list.add(gc.getstring());         }      } }

执行上面的方法,并不会导致oom异常,因为我们持有的时1000000个ab字符串对象,而testgc对象(包括其中的largestring)会在java的垃圾回收中释放掉。所以这里不会存在内存溢出。

那么究竟是什么导致的内存泄露呢?要研究这个问题,我们需要看一下方法的实现,即可。

深入java 6实现

在string类中存在这样三个属性

  • value 字符数组,存储字符串实际的内容
  • offset 该字符串在字符数组value中的起始位置
  • count 字符串包含的字符的长度

java 6中substring的实现

public string substring(int beginindex, int endindex) {   if (beginindex < 0) {       throw new stringindexoutofboundsexception(beginindex);   }   if (endindex > count) {       throw new stringindexoutofboundsexception(endindex);   }   if (beginindex > endindex) {       throw new stringindexoutofboundsexception(endindex - beginindex);   }   return ((beginindex == 0) && (endindex == count)) ? this :       new string(offset   beginindex, endindex - beginindex, value); }

上述方法调用的构造方法

//package private constructor which shares value array for speed. string(int offset, int count, char value[]) {   this.value = value;   this.offset = offset;   this.count = count; }

当我们读完上述的代码,我们应该会豁然开朗,原来是这个样子啊!

当我们调用字符串a的substring得到字符串b,其实这个操作,无非就是调整了一下b的offset和count,用到的内容还是a之前的value字符数组,并没有重新创建新的专属于b的内容字符数组。

举个和上面重现代码相关的例子,比如我们有一个1g的字符串a,我们使用substring(0,2)得到了一个只有两个字符的字符串b,如果b的生命周期要长于a或者手动设置a为null,当垃圾回收进行后,a被回收掉,b没有回收掉,那么这1g的内存占用依旧存在,因为b持有这1g大小的字符数组的引用。

看到这里,大家应该可以明白上面的代码为什么出现内存溢出了。

共享内容字符数组

其实substring中生成的字符串与原字符串共享内容数组是一个很棒的设计,这样避免了每次进行substring重新进行字符数组复制。正如其文档说明的,共享内容字符数组为了就是速度。但是对于本例中的问题,共享内容字符数组显得有点蹩脚。

如何解决

对于之前比较不常见的1g字符串只截取2个字符的情况可以使用下面的代码,这样的话,就不会持有1g字符串的内容数组引用了。

string littlestring = new string(largestring.substring(0,2));

下面的这个构造方法,在源字符串内容数组长度大于字符串长度时,进行数组复制,新的字符串会创建一个只包含源字符串内容的字符数组。

public string(string original) {   int size = original.count;   char[] originalvalue = original.value;   char[] v;   if (originalvalue.length > size) {       // the array representing the string is bigger than the new       // string itself.  perhaps this constructor is being called       // in order to trim the baggage, so make a copy of the array.       int off = original.offset;       v = arrays.copyofrange(originalvalue, off, off size);   } else {       // the array representing the string is the same       // size as the string, so no point in making a copy.       v = originalvalue;   }   this.offset = 0;   this.count = size;   this.value = v; }

java 7 实现

在java 7 中substring的实现抛弃了之前的内容字符数组共享的机制,对于子字符串(自身除外)采用了数组复制实现单个字符串持有自己的应该拥有的内容。

public string substring(int beginindex, int endindex) {     if (beginindex < 0) {       throw new stringindexoutofboundsexception(beginindex);     }     if (endindex > value.length) {       throw new stringindexoutofboundsexception(endindex);     }     int sublen = endindex - beginindex;     if (sublen < 0) {       throw new stringindexoutofboundsexception(sublen);     }     return ((beginindex == 0) && (endindex == value.length)) ? this                 : new string(value, beginindex, sublen); }

substring方法中调用的构造方法,进行内容字符数组复制。

public string(char value[], int offset, int count) {     if (offset < 0) {           throw new stringindexoutofboundsexception(offset);     }     if (count < 0) {       throw new stringindexoutofboundsexception(count);     }     // note: offset or count might be near -1>>>1.     if (offset > value.length - count) {       throw new stringindexoutofboundsexception(offset   count);     }     this.value = arrays.copyofrange(value, offset, offset count); }

真的是内存泄露么

我们知道了substring某些情况下可能引起内存问题,但是这个叫做内存泄露么?

其实个人认为这个不应该算为内存泄露,使用substring生成的字符串b固然会持有原有字符串a的内容数组引用,但是当a和b都被回收之后,该字符数组的内容也是可以被垃圾回收掉的。

哪个版本实现的好

关于java 7 对substring做的修改,收到了褒贬不一的反馈。

个人更加倾向于java 6的实现,当进行substring时,使用共享内容字符数组,速度会更快,不用重新申请内存。虽然有可能出现本文中的内存性能问题,但也是有方法可以解决的。

java 7的实现不需要程序员特殊操作避免了本文中问题,但是进行每次substring的操作性能总会比java 6 的实现要差一些。这种实现显得有点“糟糕”。

问题的价值

虽然这个问题出现在java 6并且java 7中已经修复,但并不代表我们就不需要了解,况且java 7的重新实现被喷的很厉害。

其实这个问题的价值,还是比较宝贵的,尤其是内容字符数组共享这个优化的实现。希望可以为大家以后的设计实现提供帮助和一些想法。

受影响的方法

trim和subsequence都存在调用substring的操作。java 6和java 7 substring实现的更改也间接影响到了这些方法。

参考资源

以下三篇文章写得都比较不错,但是都稍微有一些问题,我都已经标明出来,大家阅读时,需要注意。

  • the substring() method in jdk 6 and jdk 7 本文中解决java6中问题提到的字符串拼接不推荐,具体原因可以参考java细节:字符串的拼接
  • how substring method works in java – memory leak fixed in jdk 1.7 本文中提到的有一个概念错误,新的字符串不会阻止旧的字符串被回收,而是阻止旧字符串中的内容字符数组。阅读时需要注意。
  • jdk-4513622 : (str) keeping a substring of a field prevents gc for object 本文中提到的有一个测试,使用非new的形式有一点问题,其忽视了字符串常量池的存在,具体查看下面的注意。

注意

上面的重现问题的代码中

string getstring() {   //return this.largestring.substring(0,2);       return new string("ab"); }

这里最好不要写成下面这样,因为在jvm中存在字符串常量池,”ab”不会重新创建新字符串,所有的变量都会引用一个对象,而使用new string()则每次重新创建对象。

string getstring() {       return "ab"; }

关于字符串常量池,以后的文章会有介绍。

另外,这篇文章对java字符串的10大问题进行了详细的介绍,有兴趣的朋友也可以看看。

展开全文
内容来源于互联网和用户投稿,文章中一旦含有亚博电竞手机版的联系方式务必识别真假,本站仅做信息展示不承担任何相关责任,如有侵权或涉及法律问题请联系亚博电竞手机版删除

最新文章

网站地图