}
public synchronized int indexOf(String str, int fromIndex) {
return super.indexOf(str, fromIndex);
}
public int lastIndexOf(String str) {
// Note, synchronization achieved via invocations of other StringBuffer methods
return lastIndexOf(str, count);
}
public synchronized int lastIndexOf(String str, int fromIndex) {
return super.lastIndexOf(str, fromIndex);
}
这些方法是调用了父类的方法,返回指定字符串的下标或最后出现的下标。
public synchronized StringBuffer reverse() {
toStringCache = null;
super.reverse();
return this;
}
这个方法调用了父类的方法实现颠倒字符位置。
public synchronized String toString() {
if (toStringCache == null) {
toStringCache = Arrays.copyOfRange(value, 0, count);
}
return new String(toStringCache, true);
}
这个方法是toString方法,首先判断缓存数组是否为空,如果为空,将value拷贝到缓存数组里,然后将缓存数组作为参数传入String的构造方法里返回。
private static final java.io.ObjectStreamField[] serialPersistentFields =
{
new java.io.ObjectStreamField("value", char[].class),
new java.io.ObjectStreamField("count", Integer.TYPE),
new java.io.ObjectStreamField("shared", Boolean.TYPE),
};
这个方法我猜测是序列化时需要序列化的属性。
private synchronized void writeObject(java.io.ObjectOutputStream s)
throws java.io.IOException {
java.io.ObjectOutputStream.PutField fields = s.putFields();
fields.put("value", value);
fields.put("count", count);
fields.put("shared", false);
s.writeFields();
}
这个方法我猜测是序列化输出时将属性输出的方法。
private void readObject(java.io.ObjectInputStream s)
throws java.io.IOException, ClassNotFoundException {
java.io.ObjectInputStream.GetField fields = s.readFields();
value = (char[])fields.get("value", null);
count = fields.get("count", 0);
}
这个方法我猜测是序列化输入时,读取相关属性的方法。
至此,StringBuffer的源码介绍完毕,StringBuilder的源码几乎和StringBuffer的一致,仅仅是都没加synchronized关键字,我就不再贴出来了。