下面哪个方法可以实现获取字符在某个字符串中第一次出现的索引()
A: charcharAt(intindex)
B: intindexOf(intch)
C: intlastIndexOf(intch)
D: booleanendsWith(Stringsuffix)
E: :B
F: 解析:A答案返回字符串中index位置上的字符
G: 案返回指定字符在此字符串中最后一次出现处的索引
H: 案判断此字符串是否以指定的字符串结尾
I: 、下列选项中,可以正确实现String初始化的是()
J: String str = "abc";
K: String str = 'abc';
L: String str = abc;
A: charcharAt(intindex)
B: intindexOf(intch)
C: intlastIndexOf(intch)
D: booleanendsWith(Stringsuffix)
E: :B
F: 解析:A答案返回字符串中index位置上的字符
G: 案返回指定字符在此字符串中最后一次出现处的索引
H: 案判断此字符串是否以指定的字符串结尾
I: 、下列选项中,可以正确实现String初始化的是()
J: String str = "abc";
K: String str = 'abc';
L: String str = abc;
举一反三
- 下面哪个方法可以实现获取字符在某个字符串中第一次出现的索引 A: charcharAt(intindex) B: intindexOf(intch) C: intlastIndexOf(intch) D: booleanendsWith(Stringsuffix)
- 关于String类的indexOf说法正确的是() A: 可以返回指定字符在字符串中第一次出现的索引 B: 可以返回指定子字符串在字符串第一次出现的索引 C: 可以返回指定字符在字符串中最后一次出现的索引 D: 可以返回指定子字符串在此字符串最后一次出现的索引
- String类中,indexOf()方法的作用是什么() A: 返回指定索引处的字符 B: 返回指定字符的索引 C: 截取字符串 D: 返回字符串的byte类型数组
- 以下关于String类的常见操作中,哪个是方法会返回指定字符ch在字符串中最后一次出现位置的索引() A: int indexOf(int ch) B: int lastIndexOf(int ch) C: int indexOf(String str) D: int lastIndexOf(String str)
- 以下哪个方法用来从字符串中获取一个字符? A: indexOf(String str) B: split(String str,char ch) C: concat(String str) D: charAt(int index)