char_traits::length
Restituisce la lunghezza di una stringa.
static size_t length(
const char_type* _Str
);
Parametri
- _Str
La stringa c# la cui lunghezza deve essere calcolata.
Valore restituito
Il numero di elementi della sequenza che viene misurato, escluso il carattere di terminazione null.
Esempio
// char_traits_length.cpp
// compile with: /EHsc
#include <string>
#include <iostream>
int main( )
{
using namespace std;
const char* str1= "Hello";
cout << "The C-string str1 is: " << str1 << endl;
size_t lenStr1;
lenStr1 = char_traits<char>::length ( str1 );
cout << "The length of C-string str1 is: "
<< lenStr1 << "." << endl;
}
Requisiti
Intestazione: <string>
Spazio dei nomi: std