gpt4 book ai didi

Java - 遍历字符串的最有效方法

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:53:26 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
What is the easiest/best/most correct way to iterate through the characters of a string in Java?

我考虑的是时间和效率。考虑到这些,哪种方法(在下面的方法或其他未提及的方法中)是遍历字符串中每个字符的最有效方法?

String str = "Foo Bar";
for(int i=0;i<str.length();i++)
System.out.println(str.charAt(i)); // access the character using .charAt()

for(char letter: str.toCharArray)
System.out.println(letter); // use for-each loop with the char array.

同样,可能有更好的方法来执行此操作,但我也很好奇上述两者之间是否存在重大时间/资源差异。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com