1 2 3 4 5 6 7 8
package test3; public class StrBuild { public int test() { StringBuilder sb = new StringBuilder("test"); return sb.charAt(0); } }