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.
如何将宽字符串前缀添加到 C 样式字符串(在 C++ 中)?
我已经看到L添加到文字:
L
L"Hello";
但鉴于:
const char cs[] = "Hello";
既不L(cs);也不(L)cs;工作。正确的表达方式是什么?
L(cs);
(L)cs;