public final class String
implements java.io.Serializable, Comparable<String>, CharSequence {
// The value is used for character storage.
private final char value[];
// other fields ...
// Public constructor
public String(String original) {
this.value = original.value;
// other initializations ...
}
// Lots of other constructors...
// Method to get the length of the string
public int length() {
return value.length;
}
// Method to retrieve a character at a specific index
public char charAt(int index) {
return value[index];
}
// Method to get a substring
public String substring(int beginIndex, int endIndex) {
// implementation...
}
// Method to concatenate strings
public String concat(String str) {
// implementation...
}
// Lots of other methods...
}
从源码中可以看出,String 类包含了一个 char 类型的数组 value,该数组用于存储字符串中的字符。构造函数会将传入的字符串转换为 char 数组,并存储在 value 字段中。此外,String 类还提供了许多方法,如 length() 方法用于获取字符串的长度,charAt(index) 方法用于获取指定索引处的字符,substring(beginIndex, endIndex) 方法用于获取子字符串,concat(str) 方法用于连接字符串等。由于 String 类是不可变的,因此所有这些方法都不会改变原始字符串的值。