• 2022-06-07
    下面哪个方法可以实现获取字符在某个字符串中第一次出现的索引()
    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;