basic_string::difference_type
Um tipo que fornece a diferença entre dois iteradores que se referem a elementos na mesma cadeia de caracteres.
typedef typename allocator_type::difference_type difference_type;
Comentários
O tipo de número inteiro com sinal descreve um objeto que pode representar a diferença entre os endereços de todos os dois elementos na sequência controlada.
Para o tipo string, é equivalente a ptrdiff_t.
Exemplo
// basic_string_diff_type.cpp
// compile with: /EHsc
#include <string>
#include <iostream>
int main( )
{
using namespace std;
string str1 ( "quintillion" );
cout << "The original string str1 is: " << str1 << endl;
basic_string <char>::size_type indexChFi, indexChLi;
indexChFi = str1.find_first_of ( "i" );
indexChLi = str1.find_last_of ( "i" );
basic_string<char>::difference_type diffi = indexChLi - indexChFi;
cout << "The first character i is at position: "
<< indexChFi << "." << endl;
cout << "The last character i is at position: "
<< indexChLi << "." << endl;
cout << "The difference is: " << diffi << "." << endl;
}
Requisitos
Cabeçalho: <cadeia de caracteres>
Namespace: std