10.10

String类相关常见API
1.charAt:有索引下标打印字符串的字符

String s = "Hello!";
syso(s.charAt(0));//打印得“H”

2.indexOf:返回某字符首次出现的的索引下标,若没有则返回-1

String s1 = "a";
String s2 = "Java shixun";
syso(s2.indexOf(s1));//返回1

3、lastindexof:返回在最右边出现的索引下标

posted @ 2024-10-13 17:21  guozichan  阅读(7)  评论(0编辑  收藏  举报