增强 mpl 字符串

发布于 2024-11-03 02:36:14 字数 218 浏览 5 评论 0原文

您好,在 boost mpl 文档中,我发现了 mpl::string 和以下示例:

typedef mpl::string<'hell','o wo','rld'> hello;

我有点惊讶,因为我认为在 C 或 C++ 中,字符 '?

是否正常且有效?

Hi in boost mpl documentation I have discovered mpl::string and the following example:

typedef mpl::string<'hell','o wo','rld'> hello;

I'm a little bit surprised because I thought that in C or C++ we can't have more than one character between the character ' ?

Is it normal and valid ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寒江雪… 2024-11-10 02:36:14

是的,它是有效的 C++。来自任何现有 C++ 标准的 [lex.conn] 部分:

包含多个 c-char 的普通字符文字是多字符文字。多字符文字具有 int 类型和实现定义的值。

Yes, it is valid C++. From any existing C++ standard, section [lex.conn]:

An ordinary character literal that contains more than one c-char is a multicharacter literal. A multicharacter literal has type int and implementation-defined value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文