拼接 str1.append(str2)//简单拼接 str1.append(str2, 6,5)//str1后面拼接str2第六个字符开始的连续5个字符 str1.append(10, 'A')//将10个A拼接到str1后面 str1+"asdf";