gpt4 book ai didi

java - 查找项目是否在 Apple 中

转载 作者:行者123 更新时间:2023-12-02 02:35:49 26 4
gpt4 key购买 nike

所以我有一个名为 appleList 的数据库。在其中我有苹果对象,其中有一个项目列表。我正在尝试创建一个方法,如果项目 j 在客户 r 的列表中,则返回 true,否则返回 false。这是我到目前为止想到的...

public boolean (String m)
{
if(n[i] = p)
found = true;
return found;
}

最佳答案

使用 equals() 比较字符串。另外,如果 n 是一个数组,您需要像下面一样将其传递

public boolean hasProduct(String[] n, String p)
{
boolean found = false;
for(int i=0; i < n.size(); i++)
if(n[i].equals(p))
found = true;
return found;
}

关于java - 查找项目是否在 Apple 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46352253/

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