iterable

  • 网络可迭代的;可迭代对象;可遍历对象

iterableiterable

iterable

可迭代的

可迭代的iterable),它将按照它们注册的顺序和任何拥有的索引迭代所有元素、显示组和子表单。当你想手动地按适当的 …

可迭代对象

可迭代对象(Iterable):一个对象的iter()方法如果被实现,则称这个对象为可迭代对象(如list, file, string)。可迭代对象的iter()方法 …

可遍历对象

这时我们称其为“可遍历对象”(iterable)。(或者对于有限个成员的情况,称之为“限界的可遍历对象”(bounded iterable))。

可枚举

的对象都被称为 可枚举 (iterable) 对象>>> for x in countdown(10): ... print x, ... 10 9 8 7 6 5 4 3 2 1 >>> class countd...

可重复的

...汀的有关论述,即“严肃的”话语施事行为在本质上是“可重复的”( iterable) ,也就是说,所谓的“严肃性”话语必然是对现存的书 …

请注意

java中for/in_落雪_琴_百度空间 ... ,需要在您的域知识中添加另一个接口 java.lang.Iterable 请注意Iterable 位于 java.lang ...

是否可以循环

Jinja2 简明使用手册 | 朱剑的财富博客 ... *”’even 是否为奇数 *”’iterable 是否可以循环 *”’lower 是否为小写 ...

1
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)对的类型。
2
Actually, this enhancement works with any object that implements the Iterable interface, not just Collections. 实际上,这个增强适用于实现Iterable接口的任何对象,而不仅仅是Collections。
3
When iterating over a non-Collection Iterable, the compiler produces an error. 当在非集合的Iterable上迭代时,编译器生成错误。
4
The Iterable options allow the client to pass additional compiler options that correspond to the javac options. Iterableoptions允许客户机传递额外的编译器选项,这些选项均对应于javac选项。
5
Handle iteration manually, by defining your own implementation of Iterable. 手动处理遍历,定义自己的Iterable实现。
6
What it understands is scala. Iterable, which defines the basic behaviors for iterating across a collection. 它所了解的是scala.Iterable,scala.Iterable定义了在集合上进行迭代的基本行为。
7
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。
8
But, just like Iterable, the Enum class is not present in the JDK 1. 4 class library. 但是,同Iterable一样,在JDK1.4类库中也没有Enum类。
9
There are certain Java 5 language features not supported by the JSR 14 target mode (such as Iterable and enumerations). JSR14目标模式不支持某些Java5语言特性(例如Iterable和枚举)。
10
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语句用于迭代有序类型或其它可迭代对象的元素(像串,元组或列表)