今天小小的给自己总结一下String类的几种常见遍历方式,如下。
charAt():
charAt(int index) :返回 char指定索引处的值。
public static void main(String[] args) {
String s=new String("abcde");
//charAt()遍历
for(int i=0;i<s.length();++i){
System.out.println(s.charAt(i));
}
}
toCharArray() :
toCharArray() :将此字符串转换为新的字符数组。 然后按照遍历字符串数组的方式遍历即可,可采用普通for循环遍历,也可以采用增强for循环遍历。
public static void main(String[] args) {
String s = new String("abcde");
//toCharArray() 遍历 转字符串数组
char[] array = s.toCharArray();
//方式一 普通for循环
// for(int i=0;i<array.length;++i){
// System.out.println(array[i]);
// }
//方式二 增强for循环
for (char c : array) {
System.out.println(c);
}
}
substring(int beginIndex, int endIndex) :
substring(int beginIndex, int endIndex) :返回一个字符串,该字符串是此字符串的子字符串。 调用时参数设置为substring(i,i+1)则只返回[i,i+1)区间内的元素,即下标为i处的一个字符,然后输出即可。文章来源:https://www.toymoban.com/news/detail-598389.html
public static void main(String[] args) {
String s = new String("abcde");
// substring(int beginIndex, int endIndex) 遍历
for(int i=0;i<s.length();++i){
System.out.println(s.substring(i, i + 1));
}
}
总结:
个人感觉正常情况下使用较多的为charAt()、toCharArray()遍历,第三种基本上不会用来遍历,见的比较少。文章来源地址https://www.toymoban.com/news/detail-598389.html
到了这里,关于Java中String类的几种常见遍历方式的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!