gpt4 book ai didi

Java - 如何获取数组中给定元素的索引

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

我有一系列联系人,如下所示:

public class Application {

private Scanner input;
private Contact[] contacts;
private int ArrayNum;

public Application() {
input = new Scanner(System.in);
contacts = new Contact[5];
ArrayNum = 0;

}

我想要做的是在联系人列表中输入某人的姓名,如果在列表中找到他们,则返回他们的索引,如下所示:

System.out.println("Who do you want to remove?");

String name = input.nextLine();

for(Contact c: contacts){
if(c.getName().equals(name)){

//Get the index here
}
}

我尝试对此进行研究,但似乎没有答案或指南对此非常清楚,因此我希望有人可以为我解释这一点。

感谢您的浏览

最佳答案

for(int index = 0; index < contacts.length; index++) {
if(contacts[index].getName().equals(name)) {
// use the index here
}
}

我认为这段代码不需要任何进一步的解释。

关于Java - 如何获取数组中给定元素的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25067494/

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