// struct Test; forward declaration commented void* foo(struct Test* t) // C style function parameter - This works ! { return t; }
我没有意识到这一点.我不知道它是标准的C还是扩展名,以及参数之前的struct关键字是作为前向声明还是另一个机制启动.
此外,在这样的使用之后,“下一个”功能可以使用该类型而不预先添加任何关键字:
void* oof(Test* t);
解决方法
从[basic.scope.pdecl] / 6:
[…] — for an elaborated-type-specifier of the form
class-key identifier
if the elaborated-type-specifier is used in the decl-specifier-seq or parameter-declaration-clause of a
function defined in namespace scope,the identifier is declared as a class-name in the namespace that
contains the declaration […]
例如:
namespace mine { struct T* foo(struct S *); // ^^^^^^^^^---------------- decl-specifier-seq // ^^^^^^^^^^--- parameter-declaration-clause }
6.2.1 Scopes of identifiers
4 – […] If the declarator or type specifier that
declares the identifier appears […] within the list of parameter declarations in
a function definition,the identifier has block scope,which terminates at the end of the
associated block. If the declarator or type specifier that declares the identifier appears
within the list of parameter declarations in a function prototype (not part of a function
definition),the identifier has function prototype scope,which terminates at the end of the
function declarator.
a.c:3:18: warning: ‘struct Test’ declared inside parameter list void* foo(struct Test* t) ^ a.c:3:18: warning: its scope is only this definition or declaration,which is probably not what you want