#10.copyValueOf(char[] data, int offset, int count) 返回static String 将char数组从offset位置开始,count的长度覆盖原本的str 例子:char[] date={'a','b','c','d'}; str.copyValueOf(data,1,2) ---> bc #11.endWith(String s) 返回boolean 测试此字符是否以指定的s字符结尾 例子:str.endWit...