如何创建只接受实现 Iterable 的元素的方法

Posted

技术标签:

【中文标题】如何创建只接受实现 Iterable 的元素的方法【英文标题】:How to Create a Method that only accepts elements that implement Iterable 【发布时间】:2011-03-14 09:17:57 【问题描述】:

我想编写一个函数 printAll(),它只接受那些实现了 Iterable 的元素,这样我就可以遍历它们并打印这些元素。我该怎么做?

【问题讨论】:

【参考方案1】:

public static void printAll(final Iterable<?> toIterate).

【讨论】:

以上是关于如何创建只接受实现 Iterable 的元素的方法的主要内容,如果未能解决你的问题,请参考以下文章

Dart学习--之Iterable相关方法总结

我如何表明一个函数可以接受除字典之外的任何可迭代对象?

如何遍历两次Reduce中的Iterable<Text>values

Dart基础:可迭代的集合

python函数系列之sorted()

初识java集合——迭代器