gpt4 book ai didi

java - java 获取某个字符串元素的最后一个索引?

转载 作者:行者123 更新时间:2023-12-01 17:05:11 25 4
gpt4 key购买 nike

已经编写了方法的索引,但是我如何使用它来查找数组中某个字符串的最后一个实例?

public int indexOf(String string) {
if (string == null) {
throw new NullPointerException();
}
for (int index = 0; index < size; index++) {
if (string.equals(strings[index])) {
return index;
}
}
return -1;

最佳答案

反转循环并从数组末尾开始。

public int indexOf(String string) {
if (string == null) {
throw new NullPointerException();
}
for (int index = size-1; index >= 0; index--) {
if (string.equals(strings[index])) {
return index;
}
}
return -1;
}

关于java - java 获取某个字符串元素的最后一个索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25936812/

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