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.
我想知道 Windows 中是否有一些函数可以将给定的字符转换为其名称。
cout << SomeFun('\t'); cout << SomeFun(' '); cout << SomeFun(',');
输出为:TAB SPA COMMA
在 Win32 API、C++ 标准库或 C 标准库中都没有这样的函数——但您可以轻松地自己制作一个使用查找表返回结果的函数。