iterable
美
英 
例句
The reduce method is passed an Iterable whose type will be the type of the (key, value) pairs that are input to it.
对reduce方法传递一个Iterable值,它的类型将是输入它的(key,value)对的类型。
Actually, this enhancement works with any object that implements the Iterable interface, not just Collections.
实际上,这个增强适用于实现Iterable接口的任何对象,而不仅仅是Collections。
When iterating over a non-Collection Iterable, the compiler produces an error.
当在非集合的Iterable上迭代时,编译器生成错误。
The Iterable options allow the client to pass additional compiler options that correspond to the javac options.
Iterableoptions允许客户机传递额外的编译器选项,这些选项均对应于javac选项。
Handle iteration manually, by defining your own implementation of Iterable.
手动处理遍历,定义自己的Iterable实现。
What it understands is scala. Iterable, which defines the basic behaviors for iterating across a collection.
它所了解的是scala.Iterable,scala.Iterable定义了在集合上进行迭代的基本行为。
But doing so creates a dependency on the Java 5 class library because Iterable is not present in the JDK 1. 4 library.
但是这样做会形成对Java5类库的依赖,因为在JDK1.4中没有Iterable。
But, just like Iterable, the Enum class is not present in the JDK 1. 4 class library.
但是,同Iterable一样,在JDK1.4类库中也没有Enum类。
There are certain Java 5 language features not supported by the JSR 14 target mode (such as Iterable and enumerations).
JSR14目标模式不支持某些Java5语言特性(例如Iterable和枚举)。
The for statement is used to iterate over the elements of a sequence (such as a string, tuple or list) or other iterable object
for语句用于迭代有序类型或其它可迭代对象的元素(像串,元组或列表)