String
类表示字符串。Java程序中的所有字符串文本,如“abc”,都是作为该类的实例实现的。
- 字符串常量; 它们的值在创建之后不能更改。
- 字符串缓冲区支持可变字符串。因为字符串对象是不可变的,所以它们可以被共享。
String str = "abc";
// 等价于下述代码
char data[] = {'a', 'b', 'c'};
String str = new String(data);
类结构
类属性
public final class String implements java.io.Serializable, Comparable<String>, CharSequence {
// 字符串存储的值
private final char value[];
// 缓存字符串的哈希码
private int hash;
// 默认构造方法
public String() {
this.value = "".value;
}
// 其他方法...
}
主要方法
getChars()
- 将字符串中的字符复制到目标字符数组中。getBytes()
- 使用默认字符集将这个字符串编码为一个字节序列,并将结果存储到一个新的字节数组中。isEmpty()
- 判断字符长度是否为0 。length()
- 获取字符串长度 。charAt()
- 获取字符串指定位置字符 。matches()
- 匹配正则表达式。
操作字符串
charAt - 获取字符串指定位置字符
public char charAt(int index) {
// 越界,抛出异常
if ((index < 0) || (index >= value.length)) {
throw new StringIndexOutOfBoundsException(index);
}
// 返回指定位置字符
return value[index];
}
比较字符串
equalsIgnoreCase
() - 将此字符串与另一个字符串进行比较,忽略大小写注意事项。startsWith()
- 测试此字符串是否以指定的前缀开始endsWith()
- 测试此字符串是否以指定的后缀结束indexOf()
- 返回指定字符第一次出现的字符串中的索引,在指定的索引处开始搜索 。contains()
- 当且仅当此字符串包含指定的char值序列时,返回true。replace()
- 替换指定字符串。substring()
- 该字符串是该字符串的子字符串
startWith - 判断是否指定后缀
public boolean startsWith(String prefix) {
return startsWith(prefix, 0);
}
public boolean endsWith(String suffix) {
// 获取比较开始的位置
// value.length - suffix.value.length
return startsWith(suffix, value.length - suffix.value.length);
}
// toffset比较开始的位置
public boolean startsWith(String prefix, int toffset) {
char ta[] = value;
int to = toffset;
// 前缀字串数组
char pa[] = prefix.value;
int po = 0;
// 前缀字串长度
int pc = prefix.value.length;
// Note: toffset might be near -1>>>1.
if ((toffset < 0) || (toffset > value.length - pc)) {
return false;
}
// 比较每一个字符串是否相关
while (--pc >= 0) {
// 对应字符串不同时
if (ta[to++] != pa[po++]) {
return false;
}
}
return true;
}
indexOf - 获取对应字符串所在第一个位置
public int indexOf(int ch, int fromIndex) {
// 字符串长度
final int max = value.length;
// 开始位置
if (fromIndex < 0) {
fromIndex = 0;
} else if (fromIndex >= max) {
// Note: fromIndex might be near -1>>>1.
return -1;
}
// Unicode补充码点的最小值,常数U+10000。
// Character.MIN_SUPPLEMENTARY_CODE_POINT
if (ch < Character.MIN_SUPPLEMENTARY_CODE_POINT) {
// handle most cases here (ch is a BMP code point or a
// negative value (invalid code point))
final char[] value = this.value;
// 比较并返回字符位置
for (int i = fromIndex; i < max; i++) {
if (value[i] == ch) {
return i;
}
}
// 不存在
return -1;
} else {
return indexOfSupplementary(ch, fromIndex);
}
}
contains - 是否存在指定字符
public boolean contains(CharSequence s) {
return indexOf(s.toString()) > -1;
}
replace - 替换指定字符串
public String replace(char oldChar, char newChar) {
// 当字符串不相等时
if (oldChar != newChar) {
int len = value.length;
int i = -1;
char[] val = value; /* avoid getfield opcode */
// 先自加,即从 0 开始。
while (++i < len) {
// 存在要替换的字符串时,返回。
// 获取字符串存在的位置
if (val[i] == oldChar) {
break;
}
}
// 当字符串存在时
if (i < len) {
// 返回字符数组
char buf[] = new char[len];
// 复制需要替代的字符串位置之前的字符
for (int j = 0; j < i; j++) {
buf[j] = val[j];
}
// 开始替换后续的字符串
while (i < len) {
char c = val[i];
// 替换字符
buf[i] = (c == oldChar) ? newChar : c;
i++;
}
return new String(buf, true);
}
}
return this;
}
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);
}
格式化字符串
format()
- 使用指定的格式字符串和参数返回格式化的字符串。trim()
- 删除了任何前导和尾随空格。valueOf()
- 返回对应的字符串表示形式。
trim - 删除字符串前后空格
public String trim() {
// 字符串长度
int len = value.length;
// 开始地址
int st = 0;
char[] val = value; /* avoid getfield opcode */
// 获取第一个非空字符串位置
while ((st < len) && (val[st] <= ' ')) {
st++;
}
// 获取最后一个非空字符串位置
while ((st < len) && (val[len - 1] <= ' ')) {
len--;
}
return ((st > 0) || (len < value.length)) ? substring(st, len) : this;
}
评论