os :windows7 x64
jdk:jdk-8u131-windows-x64
ide:Eclipse Oxygen Release (4.7.0)
code:
package jizuiku1; public class Demo010 { public static void main(String[] args) { StringBuffer sb = new StringBuffer(); sb.append("cnblog_").append("jizuiku_").append("Demo"); System.out.println(sb); //删除索引值为3的字符 sb.deleteCharAt(3);//删的是l System.out.println(sb); } }
result:
sourceCode:
@Override public synchronized StringBuffer deleteCharAt(int index) { toStringCache = null; super.deleteCharAt(index); return this; }
重写标记,调用的是父类的 同名方法,那么进入父类查看同名方法
public AbstractStringBuilder deleteCharAt(int index) { if ((index < 0) || (index >= count)) throw new StringIndexOutOfBoundsException(index); System.arraycopy(value, index+1, value, index, count-index-1); count--; return this; }
(⊙o⊙)哦,虽然看不太懂,但是也明白了许多。
Java优秀,值得学习。
学习资源:API手册+Java源码+清净的心地。
时间: 2024-09-28 20:55:20