阅读量:0
在C++中,可以使用std::wstring
类来表示Unicode字符串,并使用std::wcin
和std::wcout
来进行Unicode字符串的输入输出。
以下是一个简单的示例代码,演示如何输入输出Unicode字符串:
#include <iostream> #include <string> int main() { // 输入Unicode字符串 std::wcout << L"请输入一个Unicode字符串:" << std::endl; std::wstring unicodeStr; std::getline(std::wcin, unicodeStr); // 输出Unicode字符串 std::wcout << L"您输入的Unicode字符串是:" << unicodeStr << std::endl; return 0; }
在上面的代码中,std::wcin
用于输入Unicode字符串,std::wcout
用于输出Unicode字符串。请注意,在使用std::wcin
进行输入时,需要在字符串前面加上L
前缀来表示宽字符字符串。