次の方法で共有


basic_string::difference_type

同じ文字列内の要素を示す 2 反復子の差を提供する型。

typedef typename allocator_type::difference_type difference_type;

解説

この符号付き整数型は、被制御シーケンス内の 2 つの要素について、そのアドレス間の差を表現できるオブジェクトを表します。

型 **[文字列]**の場合、ptrdiff_tと同じです。

使用例

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

必要条件

ヘッダー: <string>

名前空間: std

参照

関連項目

basic_string Class