다음을 통해 공유


basic_string::difference_type

동일한 문자열 내에서 요소를 참조 하는 두 반복기 사이의 차이 설명 하는 형식입니다.

typedef typename allocator_type::difference_type difference_type;

설명

부호 있는 정수 형식 주소 제어 되는 시퀀스에는 두 요소 사이의 차이 나타내는 개체에 설명 합니다.

형식에 대 한 문자열, 동일 합니다 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