gpt4 book ai didi

java - java中用元素返回名称的方法?

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

Java 初学者,我寻找通过用户提供的 id 使用函数“readPeople ()”返回 ArrayList“this.list”中关联的名称的方法。这是我的代码:

public class PersonneC implements PersonneDB {
this.list = new ArrayList();

People marie = new People(1, "Bower", "Marie");
list.add(marie.toString());

public PeopleWithId readPeople(int idPeople) {
PeopleWithId peoplename = null;
for(int i = 0; i < list.size(); i++) {
if(liste.get(i).equals(idPeople)) {
result = list.get(i);
}
}
return result.getPeopleName(); //ERROR INCOMPATIBLE TYPES
}

Wanted result returned: Bower

最佳答案

您的方法返回一个字符串readPeople的返回类型为PeopleWithId

关于java - java中用元素返回名称的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47231256/

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