5个回答
展开全部
就是检索 你输入的字符串所在的位置,第一个“如何做” 就是句子的开头,从0开始计算, 后面的0,1,好,字符串中没有相应的字符,查找不到返回-1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
String word="aaa";
int num=sdf.indexof(word);
num代表word在sdf字符串中的位置,如果num=-1表示sdf字符串里不含有word[aaa]
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public int indexOf(String str)
返回指定子字符串在此字符串中第一次出现处的索引。返回的整数是
this.startsWith(str, k)
为 true 的最小 k 值。
参数:
str - 任意字符串。
返回:
如果字符串参数作为一个子字符串在此对象中出现,则返回第一个这种子字符串的第一个字符的索引;如果它不作为一个子字符串出现,则返回 -1。
返回指定子字符串在此字符串中第一次出现处的索引。返回的整数是
this.startsWith(str, k)
为 true 的最小 k 值。
参数:
str - 任意字符串。
返回:
如果字符串参数作为一个子字符串在此对象中出现,则返回第一个这种子字符串的第一个字符的索引;如果它不作为一个子字符串出现,则返回 -1。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Returns the index within this string of the first occurrence of the specified character. If a character with value ch occurs in the character sequence represented by this String object, then the index (in Unicode code units) of the first such occurrence is returned. For values of ch in the range from 0 to 0xFFFF (inclusive), this is the smallest value k such that: this.charAt(k) == ch
is true. For other values of ch, it is the smallest value k such that: this.codePointAt(k) == ch
is true. In either case, if no such character occurs in this string, then -1 is returned.
Parameters:
ch a character (Unicode code point).
Returns:
the index of the first occurrence of the character in the character sequence represented by this object, or -1 if the character does not occur.
is true. For other values of ch, it is the smallest value k such that: this.codePointAt(k) == ch
is true. In either case, if no such character occurs in this string, then -1 is returned.
Parameters:
ch a character (Unicode code point).
Returns:
the index of the first occurrence of the character in the character sequence represented by this object, or -1 if the character does not occur.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这是获取你查询的这个字符串 在本字符串中的位置 也就是下标 比如说 你的第一个 是如何做 那么 他是从本字符串的0下标开始的 后面的 都没有 则是-1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询