basic_string::size_type
Typ Liczba całkowita bez znaku, który może reprezentować liczbę elementów i wskaźniki w ciągu.
typedef typename allocator_type::size_type size_type;
Uwagi
Jest to równoważne allocator_type::size_type.
Dla typu string, jest równoważne z size_t.
Przykład
// basic_string_size_type.cpp
// compile with: /EHsc
#include <string>
#include <iostream>
int main( )
{
using namespace std;
string str1 ( "Hello world" );
basic_string <char>::size_type sizeStr1, capStr1;
sizeStr1 = str1.size ( );
capStr1 = str1.capacity ( );
cout << "The current size of string str1 is: "
<< sizeStr1 << "." << endl;
cout << "The capacity of string str1 is: " << capStr1
<< "." << endl;
}
Wymagania
Nagłówek: <string>
Obszar nazw: std