gpt4 book ai didi

java - 不兼容的类型 - 找到了 java.util.Iterator(Lot) 但预期是 java.util.Iterator (java.lang.String)

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

我目前在迭代集合时遇到问题。当我声明字段和构造函数并尝试输入我的方法来迭代集合并打印出元素时,会出现以下错误。

不兼容的类型 - 找到了 java.util.Iterator(Lot) 但预期是 java.util.Iterator (java.lang.String)

这是我的代码。

public class Auction
{
// The list of Lots in this auction.
private ArrayList<Lot> lots;
// The number that will be given to the next lot entered
// into this auction.
private int nextLotNumber;

/**
* Create a new auction.
*/
public Auction()
{
lots = new ArrayList<Lot>();
nextLotNumber = 1;
}
public void close ()
{
Iterator<String> it = lots.iterator();
while(it.hasNext()) {
System.out.println(it.next());
}
}

最佳答案

试试这个

public void close ()
{
Iterator<Lot> it = lots.iterator();
while(it.hasNext()) {
System.out.println(it.next());
}

关于java - 不兼容的类型 - 找到了 java.util.Iterator(Lot) 但预期是 java.util.Iterator (java.lang.String),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4256427/

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