string (<string>)
특수화가 템플릿 클래스 basic_string 형식의 요소를 설명 하는 형식 char 문자열입니다.
typedef basic_string<char, char_traits<char>, allocator<char> > string;
설명
참조 basic_string::basic_string 생성자 문자열의 목록입니다.
예제
// string_string.cpp
// compile with: /EHsc
#include <string>
#include <iostream>
int main( )
{
using namespace std;
// Equivalent ways to declare an object
// of type basic_string <char>
const basic_string <char> s1 ( "test" );
string s2 ( "test" ); // Uses the typedef for string
// comparison between two objects of type basic_string
if ( s1 == s2 )
cout << "The strings s1 & s2 are equal." << endl;
else
cout << "The strings s1 & s2are not equal." << endl;
}
요구 사항
헤더: <string>
네임 스페이스: std