"迭代器" is not found on TREX in Chinese-English direction
Try Searching In English-Chinese (迭代器)

Low quality sentence examples

VS2012中,则是一个双链表,每一个bucket存储了起始迭代器和结束迭代器.
In VS2012, it's a doubly-linked list and each bucket stores both begin and end iterators;
此类及其迭代器实现Collection和Iterator接口的所有可选方法。
This class and its iterator implement all of the optional methods of the Collection and Iterator interfaces.
一旦创建迭代器之后,可以选择用多种方式利用它。
Once we have created an iterator, we can choose to use it in a variety of ways.
迭代器,使你能够通过循环来得到或删除集合的元素。
Iterator enables you to cycle through a collection, obtaining or removing elements.
生成器允许你以一种非常pythonic的方式来创建迭代器
Generators allow you to create iterators in a very pythonic manner.
这个对象需要支持下面描述的迭代器协议(iteratorprotocal)。
The object is required to support the iterator protocol described below.
我希望这能帮助您理解迭代器和生成器的基本动机。
I hope this can help you grasp the essential motivation of iterator and generator.
第十三章探索了闭包和迭代器:Rust中来自函数式编程语言的功能。
Chapter 13 explores closures and iterators: features of Rust that come from functional programming languages.
Javascript中最常见的迭代器是Array迭代器,它只是按顺序返回关联数组中的每个值。
The most common iterator in Javascript is the Array iterator, which simply returns each value in the associated array in sequence.
序列解包也支持迭代器:如果你知道迭代器将返回N个元素,则可以将它们解包为N元组.
Sequence unpacking also supports iterators: if you know an iterator will return N elements, you can unpack them into an N-tuple.
迭代器对象可以提供这些额外的功能,但迭代器协议只明确了__next__()方法。
Iterator objects can optionally provide these additional capabilities, but the iterator protocol only specifies the__next__() method.
警告提醒了我们为什么:迭代器适配器是惰性的,而这里我们需要消费迭代器
The warning reminds us why: iterator adaptors are lazy, and we need to consume the iterator here.
TestNG将先后调用该迭代器和测试方法,而测试方法的参数则由该迭代器依次返回。
TestNG will invoke the iterator and then the test method with the parameters returned by this iterator one by one.
迭代器由Symbol.
The default iterator is created by the Symbol.
首先,迭代器协议-当你写.
First, the iterator protocol- when you write.
首先,迭代器协议-写的时候.
First, the iterator protocol- when you write.
迭代器对象负责跟踪当前的元素;
An iterator object is responsible for keeping track of the current element;
首先我们要理解迭代器(iterators)。
First lets understand iterators.
迭代器只是解决该问题的第一部分。
Iterators are the first part of the solution to that problem.
你还可以让迭代器抛出一个错误。
You can also cause iterators throw an error.