发布网友 发布时间:2022-04-20 18:36
共1个回答
热心网友 时间:2023-10-15 03:00
1.返回参数的字符串表示形式2.没有这个方法3.返回字符串表示形式4.返回此字符串的长度5.返回指定索引处的 char 值6.getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
将字符从此字符串复制到目标字符数组。 7.compareTo(String anotherString)
按字典顺序比较两个字符串。 8.startsWith(String prefix)
测试此字符串是否以指定的前缀开始。 9.startsWith(String prefix, int toffset)
测试此字符串从指定索引开始的子字符串是否以指定前缀开始。 10.equals(Object anObject)
将此字符串与指定的对象比较。11.equalsIgnoreCase(String anotherString)
将此 String 与另一个 String 比较,不考虑大小写。12.hashCode()
返回此字符串的哈希码。 13.regionMatches(int toffset, String other, int ooffset, int len)
测试两个字符串区域是否相等。 14.indexOf(int ch)
返回指定字符在此字符串中第一次出现处的索引。 15.lastIndexOf(int ch)
返回指定字符在此字符串中最后一次出现处的索引。 16.substring(int beginIndex)
返回一个新的字符串,它是此字符串的一个子字符串。 17.没有这个方法18.toLowerCase()
使用默认语言环境的规则将此 String 中的所有字符都转换为小写。 19.toLowerCase(Locale locale)
使用给定 Locale 的规则将此 String 中的所有字符都转换为小写。 20.toUpperCase()
使用默认语言环境的规则将此 String 中的所有字符都转换为大写。21.toUpperCase(Locale locale)
使用给定 Locale 的规则将此 String 中的所有字符都转换为大写。