gpt4 book ai didi

Java:在列表中查找字符串的索引

转载 作者:行者123 更新时间:2023-11-30 08:08:51 25 4
gpt4 key购买 nike

我有一个列表:

public static  List<String> codes = new LinkedList<String>(Arrays.asList(
"Zero",
"One"
)); //Etc..

我希望在输入 String 时能够找到它所在的位置。例如,如果我键入 One,我希望程序打印出 1。目前,我只能使用 codes.get();

进行反向操作

更正:我希望程序打印出字符串在列表中的位置。 Zero 的位置是 0,如果我执行 codes.get(0);,我会得到 Zero。但是我该怎么做呢?

有没有办法顺利做到这一点?提前致谢。

最佳答案

codes.get() 的反转是indexOf(Object obj)方法

Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element.

codes.indexOf("One");

关于Java:在列表中查找字符串的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32883672/

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