标签: c++ escaping
我正在寻找一种以更好的方式编写以下内容的方法
else if (c == (wchar_t)(127)) return true;
其中' \ x7f'表示ascii字符127或删除键。
是否有C ++转义序列/ #define for this?
例如:\ n,\ t,\ b ...
答案 0 :(得分:2)
删除