spring类的charAt()方法源码学习

charAt() 方法用于返回指定索引处的字符。

    public char charAt(int index) {
        if ((index < 0) || (index >= value.length)) {
            throw new StringIndexOutOfBoundsException(index);
        }
        return value[index];
    }

你可能感兴趣的:(spring类的charAt()方法源码学习)