JDK1.8的String详解

Posted asndxj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JDK1.8的String详解相关的知识,希望对你有一定的参考价值。

1.String.substring()方法

substring(beginIndex,endIndex) 方法返回字符串的子字符串。

  • beginIndex -- 起始索引(包括), 索引从 0 开始。

  • endIndex -- 结束索引(不包括)。

再JDK1.7+中实际是重新创建了一个字符数组

技术图片

String.substring()有两个方法

技术图片

实现方法

判断beginIndex和endIndex是否合法,否则抛出异常

通过new String(value, beginIndex, subLen)方法复制字符串

 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);
    }

 

 this.value = Arrays.copyOfRange(value, offset, offset+count);

复制一个数组从offsetoffset+count

public String(char value[], int offset, int count) {
        if (offset < 0) {
            throw new StringIndexOutOfBoundsException(offset);
        }
        if (count <= 0) {
            if (count < 0) {
                throw new StringIndexOutOfBoundsException(count);
            }
            if (offset <= value.length) {
                this.value = "".value;
                return;
            }
        }
        // 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);
    }

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

以上是关于JDK1.8的String详解的主要内容,如果未能解决你的问题,请参考以下文章

hashmap详解(基于jdk1.8)

HashMap实现详解 基于JDK1.8

Java开发大牛用代码演示基于JDK1.6版本下的HashMap详解

jdk1.8 HashMap的扩容resize()方法详解

JDK1.8源码学习-String

转:JDK1.8-Stream()使用详解