Compartilhar via


list::list (STL Samples)

Ilustra como usar o list::list função de biblioteca STL (Standard Template) no Visual C++.

explicit list(
   const A& Al = A( )
);
explicit list(
   size_type n,
   const T& v = T( ),
   const A& Al = A( )
);
list(
   const list& x
);
list(
   const_iterator First,
   const_iterator Last,
   const A& Al = A( )
);

Comentários

ObservaçãoObservaçã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 primeiro construtor Especifica uma seqüência vazia de controlado inicial.O segundo construtor Especifica uma repetição de n elementos do valor de x.O terceiro construtor Especifica uma cópia da seqüência controlada por x.O último construtor Especifica a seqüência [First, Last).Todos os construtores armazenam o objeto alocador Al, ou para o construtor de cópia, o valor de retorno de x.get_allocator, em que o membro de dados alocador e inicializar a seqüência controlada.

Exemplo

// list_list.cpp
// compile with: /EHsc
// Demonstrates the different constructors for list<T>

#pragma warning (disable:4786)
#include <list>
#include <string>
#include <iostream>

using namespace std ;

typedef list<string> LISTSTR;

// Try each of the four constructors
int main()
{
    LISTSTR::iterator i;
    LISTSTR test;                   // default constructor

    test.insert(test.end(), "one");
    test.insert(test.end(), "two");

    LISTSTR test2(test);            // construct from another list
    LISTSTR test3(3, "three");      // add several <T>'s
    LISTSTR test4(++test3.begin(),  // add part of another list
             test3.end());

    // Print them all out

    // one two
    cout << "test:";
    for (i =  test.begin(); i != test.end(); ++i)
        cout << " " << *i;
    cout << endl;

    // one two
    cout << "test:";
    for (i =  test2.begin(); i != test2.end(); ++i)
        cout << " " << *i;
    cout << endl;

    // three three three
    cout << "test:";
    for (i =  test3.begin(); i != test3.end(); ++i)
        cout << " " << *i;
    cout << endl;

    // three three
    cout << "test:";
    for (i =  test4.begin(); i != test4.end(); ++i)
        cout << " " << *i;
    cout << endl;
}

Saída

test: one two
test: one two
test: three three three
test: three three

Requisitos

Cabeçalho: <list>

Consulte também

Conceitos

Exemplos de biblioteca de modelo padrão