次の方法で共有


string (<string>)

文字列として型 char の要素と basic_string テンプレート クラスから特化したクラスを記述する型。

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

参照

関連項目

basic_string Class

basic_string::basic_string