当前位置: 技术问答>java相关
关于string类的一个问题
来源: 互联网 发布时间:2015-03-25
本文导语: string类中的indexOf(int ch, int fromIndex)函数 Returns the index within this string of the first occurrence of the specified character, starting the search at the specified index. 如果有一个char型c,要...
string类中的indexOf(int ch, int fromIndex)函数 Returns the index within this string of the first occurrence of the specified character, starting the search at the specified index.
如果有一个char型c,要找到一个string中c的index,直接用c代替上面函数中int型的ch好像有错,应该如何处理?
如果有一个char型c,要找到一个string中c的index,直接用c代替上面函数中int型的ch好像有错,应该如何处理?
|
String st = "abcd";
st.indexOf('c',0);
st.indexOf('c',0);