- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
假设有一个声明:
struct A { static int i; };
A a;
据我所知,输入字符串 int decltype(a)::i = 0;
没有严格描述的行为。
可以解析为int decltype(a)::i = 0;
,其中:int
是一个 decl-specifier 和 decltype(a)::i
declarator
。
但是可以解析为int decltype(a)::i = 0;
,其中int
和 decltype(a)
被解析为 decl-specifer
s,而 ::i
是 (re ) 声明全局变量 i
- 编译器应该给出一个错误消息,类似于“一个 decl-specifier-seq 不应包含两个 type-specifiers"。
我清楚地知道第一种解析方法应该是正确的,但我找不到任何证据。
无论如何,在 int A::a = 0;
中,A
肯定会被解析为 declarator
的一部分,因为 A
是一个 type-name 并且在标准中描述
If a type-name is encountered while parsing a decl-specifier-seq, it is interpreted as part of the decl-specifier-seq if and only if there is no previous type-specifier other than a cv-qualifier in the decl-specifier-seq.
同样,decltype(a)
不是 type-name,而是 type-specifier。
我不是“找茬”,我有这个问题是因为我正在为 C++ 编写解析器。
所以,我想知道描述是否应该是:
If a type-specifier is encountered while parsing a decl-specifier-seq, it is interpreted as part of the decl-specifier-seq if and only if there is no previous type-specifier other than a cv-qualifier in the decl-specifier-seq.
最佳答案
[dcl.meaning]/1 明确不允许您的定义:
The nested-name-specifier of a qualified declarator-id shall not begin with a decltype-specifier.
(GCC 和 VC++ 在这方面存在缺陷。)
您的实现的具体诊断(无论是指多个 type-specifier 还是无效的 nested-name-specifier)只是一个 QoI 问题。实际上,实现可能会在 type-specifier 上实现最大 munch 原则的一些变体,类似于 original wording of your quote resembled (这就是 GCC 和 VC++ 接受您的代码的原因)。但是,ICC gives the exact error message你期望的:
error: invalid combination of type specifiers
请注意,您的“分辨率”也不正确,因为我们可以有多个 type-specifier;见 [dcl.type]/2 .事实上,措辞是好的,因为如果一个 valid 声明符的开头(在你的无效情况下,decltype(a)
)是一个 type-说明符,它也是一个类型名。
关于c++ - C++的语法歧义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36113229/
虽然我正在运行以测试此 thread 中的一些代码我发现了一件奇怪的事情,如果你考虑下面的程序 import java.util.ArrayList; import java.util.List; p
我只是很好奇为什么使用 using 指令以这种方式设计它。对于 1) struct 被视为命名空间,对于 2) 它不是: struct foo { using type0 = int; }; na
我需要在 ANTLR 中匹配一条消息,该消息包含由/分隔的 2 个字段第一个字段可以有 1..3 数字,第二个字段可以有 1..2 数字, 这不起作用 msg: f1 '/' f2; f1: DIGI
我想定义一个带有 x, y, z 坐标的 3D 矢量。可以使用(+)运算符添加向量,并可以使用length函数计算长度 如果我想编译它,我会收到以下错误: It could refer to eith
所以,今天我一直在测试 Java 的重载技术,但遇到了我无法解释的歧义。基本上,当存在带有原语及其相应包装器的可变参数方法时,编译器会提示并且无法决定选择哪一个,我不明白为什么?人类很容易决定而不是编
发现: Ambiguity while overloading the cast operator 和 C++ Operator Ambiguity 没有帮助 情况: 在容器类的内部我有: opera
我正在使用以下 XPath 片段 ancestor::contribution[1]/preceding-sibling::contribution[@speaker-reference][1] 我的
在尝试依赖可变参数模板实现一些事情时,我偶然发现了一些我无法解释的事情。我将问题归结为以下代码片段: template struct A {}; template class Z, typenam
我最近对 LALR 的研究足以写一篇 LALR generator ,并且我正在尝试为其构造一个 java 或 c# 风格的语法(其开头指定为 here )。 我知道编写解析器生成器需要额外的努力
在阅读 wikipedia article关于修订控制的文章,我发现了一些似乎定义不明确的术语,并且想知道它们是如何在现实世界中实际使用/应用的。具体来说: “主线”与“基线” “分支”与“流” “结
我有以下代码: class A{ public void print(A a){ System.out.println("A 1"); } } class B exte
考虑我试过的以下查询,有两个表,Orders 和 Customers,每个表都有列名称 CustomerID,当我尝试显示两个 CustomerID 时,只有一列显示,我不明白为什么会这样,或者我是理
我正在为基本汇编语言编写一个简单的组合词法分析器/解析器。我的问题是,在解析操作码时,我需要解析一些十六进制,它是指令计数器,可能是立即值等,以及实际的操作码。 基本上,当解析像 add 这样的东西时
我正在尝试在 mysql 中跨两个不同的数据库进行标题搜索,以匹配来自不同来源的数据。在 db1 或 db2 中,标题有时会在一个数据库中以“第一个标题”开头,而在另一个数据库中则以“第一个标题”开头
我对 token 级别的歧义有疑问。 问题看起来是这样的。我的代码看起来像这样,因此标记 t_UN1 具有更高的优先级。 t_ignore = ' \t\v\r' # whitespace ....
在 Main() 的最后一行,我在尝试执行指针操作时遇到错误,但我实际上想做的是调用我在 Foo 类中定义的乘法运算符。如果这不是调用乘法的语法,那是什么? namespace test {
在此page它说: The "00" specifier causes the value to be rounded to the nearest digit preceding the decim
我正在使用 C++ Builder 并使用 TDateTime 数据类型创建 GUI 应用程序。 当我在 TDateTime 对象上使用 MonthOf() 方法时,我得到的值比 TDateTime
$7.3.3/14 (C++03) struct A { int x(); }; struct B : A { }; struct C : A { using A::x; int x(in
我一直在开发一种适配器类,当我在 clang 下遇到问题。当定义了左值引用和右值引用的转换运算符时,您会在尝试从您的类中移出时遇到歧义编译错误(当这样的代码应该没问题时,如 operator cons
我是一名优秀的程序员,十分优秀!