Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Visual Studio 2012,我想要一种简单的方法来使用 cout 在 Windows 控制台上打印 →。如果 cout 不可能,那么还有别的。
您想使用 的宽字符版本cout,称为wcout. 它可以打印宽字符串,但你必须L在字符串前面声明它是宽字符。 MSDN 网站
cout
wcout
L
std::wcout << L"→";