floatlee 2017-11-18 03:28 采纳率: 100%
浏览 956
已采纳

关于java中Iterable和Iterator接口的问题

java中foreach为什么设计成通过Iterable访问容器,而不直接通过Iterator访问?

这样产生特定Iterable接口,满足foreach,就需要实现两层匿名内部类,Iterable和Iterator,为什么foreach不设计成通过Iterator访问容器?
不知道多设计一层Iterable是为了什么目的。请指教,谢谢。

class ReversibleArrayList<T> extends ArrayList<T>
{
    public ReversibleArrayList(Collection<T> c) { super(c); }
    public Iterable<T> reversed()
    {
        return new Iterable<T>()
                {
                    public Iterator<T> iterator()
                    {
                        return new Iterator<T>()
                                {
                                    int current = size() - 1;
                                    public boolean hasNext() { return current > -1; }
                                    public T next() { return get(current--); }
                                    public void remove() { throw new UnsupportedOperationException(); }
                                };
                    }
                };
    }
}

通过两层匿名内部类,才得到迭代器。

  • 写回答

1条回答 默认 最新

  • threenewbee 2017-11-18 03:30
    关注

    一个类可以按照不同方式迭代,拥有多个迭代器
    迭代器可以单独实现,和Iterable分开(设计模式里面叫外部迭代器)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 请问各位,如何在Jetson nano主控板的Ubuntu系统中安装PyQt5
  • ¥15 MAC安装佳能LBP2900驱动的网盘提取码
  • ¥400 微信停车小程序谁懂的来
  • ¥15 ATAC测序到底用什么peak文件做Diffbind差异分析
  • ¥15 安装ubantu过程中第一个vfat 文件挂载失败
  • ¥20 GZ::CTF如何兼容一些靶机?
  • ¥15 etcd集群部署问题
  • ¥20 谁可以帮我一下问一下各位
  • ¥15 为何重叠加权后love图的SMD与svyCreateTableOne函数绘制基线表的不一致
  • ¥150 求 《小魔指》街机游戏机整合模拟软件