wstring
宣告寬字元字串。 wstring 是特製化樣板類別 basic_string 包含 wchar_t 字串資料的 typedef。 wstring 繼承 basic_string 類別的功能,這包括運算子和方法。
特製化 basic_string 的其他 typedef 也包含 字串、 u16string和 u32string。 如需詳細資訊,請參閱 <string> 成員。
typedef basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstring;
範例
// string_wstring.cpp
// compile with: /EHsc
#include <string>
#include <iostream>
int main( )
{
using namespace std;
// Equivalent ways to declare an object of type
// basic_string <wchar_t>
const basic_string <wchar_t> s1 ( L"abc" );
wstring s2 ( L"abc" ); // Uses the typedef for wstring
// Comparison between two objects of type basic_string <wchar_t>
if ( s1 == s2 )
cout << "The strings s1 & s2 are equal." << endl;
else
cout << "The strings s1 & s2 are not equal." << endl;
}
需求
標題: <string>
命名空間: std