advance (STL Samples)
Ilustra como usar o antecipada função de biblioteca STL (Standard Template) no Visual C++.
template<class InIt, class Dist>
void advance(
InIt& it,
Dist n
);
Comentários
Observação |
---|
Nomes de classe/parâmetro o protótipo não coincidem com a versão no arquivo de cabeçalho.Alguns foram modificados para melhorar a legibilidade. |
O antecipada função STL aceita dois parâmetros:
InIt — O iterador para Avançar.
Dist — o número de elementos para incrementar o iterador por.
O antecipada função STL avança o iterador n vezes.Se o iterador é um tipo de iterador de acesso aleatório, a função avalia a expressão como + = o iterador n.Caso contrário, ele executa cada incremento avaliando: + + iterador.Se o iterador é um tipo de iterador de entrada ou de encaminhamento, n não deve ser negativo.
Exemplo
// Advance.cpp
// compile with: /EHsc
#pragma warning (disable:4786)
#include <iostream>
#include <string>
#include <list>
using namespace std ;
typedef list<string> STRLIST;
int main() {
STRLIST List;
STRLIST::iterator iList;
STRLIST::difference_type dTheDiff;
List.push_back("A1");
List.push_back("B2");
List.push_back("C3");
List.push_back("D4");
List.push_back("E5");
List.push_back("F6");
List.push_back("G7");
// Print out the list
iList=List.begin();
cout << "The list is: ";
for (int i = 0; i < 7 ; i++, iList++)
cout << *iList << " ";
// Initialize to the first element"
iList=List.begin();
cout << "\n\nAdvance to the 3rd element." << endl;
advance(iList,2);
cout << "The element is " << *iList << endl;
dTheDiff = distance( List.begin(), iList);
}
Saída
The list is: A1 B2 C3 D4 E5 F6 G7
Advance to the 3rd element.
The element is C3
Requisitos
Cabeçalho: <iterator>