What is the easiest/best/most correct way to iterate through the characters of a string in Java?(在Java中遍历字符串字符的最简单/最好/最正确的方法是什么?)
问题描述
在 Java 中遍历字符串字符的一些方法是:
Some ways to iterate through the characters of a string in Java are:
- 使用
StringTokenizer
? - 将
String
转换为char[]
并对其进行迭代.
- Using
StringTokenizer
? - Converting the
String
to achar[]
and iterating over that.
最简单/最好/最正确的迭代方式是什么?
What is the easiest/best/most correct way to iterate?
推荐答案
我使用 for 循环迭代字符串并使用 charAt()
获取每个字符来检查它.由于 String 是用数组实现的,所以 charAt()
方法是一个常数时间的操作.
I use a for loop to iterate the string and use charAt()
to get each character to examine it. Since the String is implemented with an array, the charAt()
method is a constant time operation.
String s = "...stuff...";
for (int i = 0; i < s.length(); i++){
char c = s.charAt(i);
//Process char
}
这就是我会做的.这对我来说似乎是最简单的.
That's what I would do. It seems the easiest to me.
就正确性而言,我认为这里不存在.这完全取决于您的个人风格.
As far as correctness goes, I don't believe that exists here. It is all based on your personal style.
这篇关于在Java中遍历字符串字符的最简单/最好/最正确的方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在Java中遍历字符串字符的最简单/最好/最正确的方法是什么?
基础教程推荐
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01