ITERATOR in Serbian translation

итератора
iterator
the iterators
iterator

Examples of using Iterator in English and their translations into Serbian

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
  • Latin category close
  • Cyrillic category close
In computer programming, an iterator is an object that enables a programmer to traverse a container, particularly lists.
У програмирању, итератор је објекат који омогућује програмеру да пролази кроз колекцију, нарочито листу.
The iterator object then needs to define a__next__() method that returns the next element and an__iter__() method that returns the next iterator object to use.
Предмет итератора онда тражи да се дефинише__ next__() метода која враћа следећи елемент и__ iter__() методу која враћа следећи предмет итератора за коришћење.
points to the first element, while the iterator returned by end()
показује на први елемент, док итератор враћен од end()
It is possible for users to create their own iterator types by deriving subclasses from the standard std:: iterator class template.
Могуће је за кориснике да направе свој тип итератора помоћу извођења подкласе од стандардног std:: iterator шаблона класе.
Such an implementation supporting external iteration is demonstrated in MATLAB Central File Exchange item Design Pattern: Iterator(Behavioral).
Таква имплементација која подржава спољну итерацију је демонстрирана у МАТLAB-у Централној Размени Фајлова ставка Дизајн Шаблона: Итератор( Понашање).
In addition, associative arrays may also include other operations such as determining the number of bindings or constructing an iterator to loop over all the bindings.
Додатно, асоцијативни низови могу укључити друге операције попут одређивање броја везивања или конструисање итератора којим би се, кроз петљу, прошло кроз сва везивања.
The original example above could be written in Java 5 as:// Iterator implemented as anonymous class.
Оригиналан пример се може написати у Јава 7 као:// Итератор је имплементиран као анонимна класа.
method of the iterator removes the most recently visited element from the container while keeping the iterator usable.
метода итератора брише најпосећеније елементре из садржине, док чува употребљиве од стране итератора.
Adding or removing elements by calling the methods of container(also from the same thread) makes the iterator unusable.
Додавање или уклањање елемената позивањем меотда садржине( такође од исте нити) чини итератор бескорисним.
list of iterator categories: Different languages or libraries used with these languages define iterator types.
листа категорија итератора: Различити језици или библиотеке коришћене овим језицима дефинишу типове итератора.
The two main interfaces for implementation in PHP scripts that enable objects to be iterated via the foreach loop are Iterator and IteratorAggregate.
Два главна интерфејса за реализацију у PHP скриптама који омогућују предметима да буду понављани преко форич петље су Итератор и АгрегатИтератора.
Alternatively, it may be desirable to abstract the mechanisms of the array storage container from the user by defining a custom object-oriented MATLAB implementation of the Iterator Pattern.
Алтернативно, може бити пожељно да се механизми садржине за складиштење низова учине абстрактним од стране корисника дефинисањем произвољне објектно-оријентисане MATLAB имплементације Шаблона Итератора.
is used to create an iterator object.
направи предмет итератора.
method that returns an iterator object.
која враћа предмет итератора.
In Python, an iterable is an object which can be converted to an iterator, which is then iterated through during the for loop;
У Пајтону, итерабла је објекат који може бити конвертован у итератор, који је касније понављан током for петље;
User-created containers only have to provide an iterator that implements one of the five standard iterator interfaces, and all the algorithms
Контејнери направљени од стране корисника би требало једино да обезбеде итератор који имплементира један од пет стандардних итераторских интерфејса,
Instead of the Java"foreach" loops for looping through an iterator, Scala has for-expressions, which are similar
Уместо Јава петље" форич" преко итератора, Скала има много снажнији концепт for-израза.
The following example shows a simple use of iterators: Iterator iter= list. iterator();//Iterator iter= list. iterator(); in J2SE 5.0 while(iter.
Следећи пример показује једноставну употребу итератора: Iterator iter= list. iterator();// Iterator iter= list. iterator(); in J2SE 5. 0 while( iter. hasNext()){ System.
The following example shows a simple use of iterators: Iterator iter= list. iterator();//Iterator<MyType> iter= list. iterator(); in J2SE 5.0 while(iter.
Следећи пример показује једноставну употребу итератора: Iterator iter= list. iterator();// Iterator< MyType> iter= list. iterator(); in J2SE 5. 0 while( iter. hasNext()){ System.
an iterable is an object which can be converted to an iterator, which is then iterated through during the for loop;
у Пајтону: for value in iterable: print value У Пајтону,">итерабла је објекат који може бити конвертован у итератор, који је касније понављан током for петље;
Results: 70, Time: 0.0435

Top dictionary queries

English - Serbian