Udostępnij za pośrednictwem


collection_adapter::size (STL/CLR)

Oblicza liczbę elementów.

    size_type size();

Uwagi

Element członkowski funkcja zwraca długość kontrolowanej sekwencji.Nie jest zdefiniowany w specjalizacji dla IEnumerable lub IEnumerable<Value>.

Przykład

// cliext_collection_adapter_size.cpp 
// compile with: /clr 
#include <cliext/adapter> 
#include <cliext/deque> 
 
typedef cliext::collection_adapter< 
    System::Collections::ICollection> Mycoll; 
int main() 
    { 
    cliext::deque<wchar_t> d6x(6, L'x'); 
    Mycoll c1(%d6x); 
 
// display initial contents " x x x x x x" 
    for each (wchar_t elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
    System::Console::WriteLine("size() = {0}", c1.size()); 
    return (0); 
    } 
 
  

Wymagania

Nagłówek:<cliext i kart>

Przestrzeń nazw: cliext

Zobacz też

Informacje

collection_adapter (STL/CLR)