gpt4 book ai didi

java - 如何获取字符串数组中字符的索引位置

转载 作者:行者123 更新时间:2023-12-01 07:24:02 24 4
gpt4 key购买 nike

如何获取数组chars中字符c的索引位置?

public static final String[] chars = new String[]{"A","B","C","D","E","F"};
String c = "E";

// the answer is 4.

最佳答案

如果你的数组已排序,你可以使用

Arrays.binarySearch()

int answer = Arrays.binarySearch(chars, c);
return answer;

正如所提到的。否则使用 for 循环。

for (int i=0; i<chars.length; ++i) {
if (s[i].equals(c)) {
return i;
}
}

关于java - 如何获取字符串数组中字符的索引位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28808342/

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