标签: java collections types generics iterable
我想编写一个函数printAll(),它只接受那些实现Iterable实现的元素,这样我就可以迭代它们并打印元素。我该怎么做?
答案 0 :(得分:7)
public static void printAll(final Iterable<?> toIterate)。
public static void printAll(final Iterable<?> toIterate)