gpt4 book ai didi

java - 实现 Java Iterable 接口(interface)

转载 作者:搜寻专家 更新时间:2023-10-31 08:30:27 25 4
gpt4 key购买 nike

公共(public)类 C1 实现 Iterable { 私有(private) LinkedList 列表; 公共(public)静态类 NC1 { ... } ... x 公共(public)迭代器 iterator() { 返回 list.iterator(); }

但是 eclipse 提示(在 x-ed 行):

- The return type is incompatible with Iterable<NC1>.iterator()
- implements java.lang.Iterable<NC1>.iterator

我不明白错误在哪里。有人可以帮忙吗?

最佳答案

您需要将NC1 更改为C1.NC1。以下编译:

import java.util.*;

public class C1 implements Iterable<C1.NC1> {
private LinkedList<NC1> list;
public static class NC1 {
}

public Iterator<C1.NC1> iterator() {
return list.iterator();
}
}

或者,您可以import static yourpackage.C1.NC1

关于java - 实现 Java Iterable<E> 接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2943808/

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