在声明中引入名称是什么意思?

What does it mean to introduce a name into a declaration?

根据 N4567,7.1.6.3 第 2 段说,

... If the identifier resolves to a class-name or enum-name, the elaborated-type-specifier introduces it into the declaration the same way a simple-type-specifier introduces its type-name...

将 class-name 或 enum-name 引入声明 而不是声明区域 是什么意思?此外,简单类型说明符 引入其类型名称的方式究竟是什么?

一个elaborated-type-specifier可以有不同的效果。首先,它可以简单地引入一个名称来引用先前的声明。另一方面,如果找不到引用任何此类声明的名称,它会先通过声明来引入该名称。

你的引述试图澄清在前一种情况下没有进一步的影响,类似于 simple-type-specifier: 类型已经被声明并且正在被声明表示。