c – 转发声明的替代方案

我注意到,将类或struct关键字预先添加到另外需要转发的类型的类型中,就像该类型被转发为已声明一样:
// struct Test; forward declaration commented

void* foo(struct Test* t) // C style function parameter - This works !
{
    return t; 
}

我没有意识到这一点.我不知道它是标准的C还是扩展名,以及参数之前的struct关键字是作为前向声明还是另一个机制启动.

此外,在这样的使用之后,“下一个功能可以使用该类型而不预先添加任何关键字:

void* oof(Test* t);

Demo

解决方法

这是合法的,但可能不是一个好主意.

从[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
}

这将T和S作为类名称和foo作为函数名称引入命名空间矿.

注意C中的行为是不同的;结构名称仅在函数的范围内有效.

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.

gcc在C代码中给出了适用于此用法的警告:

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

相关文章

本程序的编译和运行环境如下(如果有运行方面的问题欢迎在评...
水了一学期的院选修,万万没想到期末考试还有比较硬核的编程...
补充一下,先前文章末尾给出的下载链接的完整代码含有部分C&...
思路如标题所说采用模N取余法,难点是这个除法过程如何实现。...
本篇博客有更新!!!更新后效果图如下: 文章末尾的完整代码...
刚开始学习模块化程序设计时,估计大家都被形参和实参搞迷糊...