basic_string::difference_type

Un tipo che fornisce la differenza tra due iteratori che fanno riferimento agli elementi all'interno della stessa stringa.

typedef typename allocator_type::difference_type difference_type;

Note

Il tipo dell'intero con segno viene illustrato un oggetto che può rappresentare la differenza tra gli indirizzi di tutti gli due elementi della sequenza selezionata.

Per tipo stringa, è equivalente a ptrdiff_t.

Esempio

// 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;
}
  
  
  

Requisiti

intestazione: <string>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

basic_string Class