gpt4 book ai didi

c - C11 标准编译器接受的替代函数指针语法

转载 作者:行者123 更新时间:2023-12-02 18:36:33 25 4
gpt4 key购买 nike

我不确定这个函数指针类型声明语法,但它有效。语法就像声明一个常规的旧函数一样。

typedef struct Element GetChildCallback(void *userdata, usize parent, usize child_no);

我找不到任何有关它如何符合标准或它可能有哪些缺点的信息。

我认为这只适用于 typedef,所以我更进一步,发现这也适用于常规函数参数:

extern inline void dmpstrn(const char *t, usize n, int printer(const char *fmt, ...));

inline void dmpstrn(const char *t, usize n, int printer(const char *fmt, ...)) {
usize len = strlen(t) > n ? n : strlen(t);
printer("\"");
for (usize i = 0; i < len; i += 1) {
if (t[i] == '\n')
printer("\\n");
else
printer("%c", t[i]);
}
printer("\"\n");
}

// ...

int main() {
dmpstrn("Hello\nworld", UINT64_MAX, printf);
}

但这不适用于变量

    int printer(const char *fmt, ...) = printf; // Invalid

就好像它不是函数指针,而是实际的函数,但这是什么意思?

最佳答案

用作函数参数的函数声明由编译器隐式调整为指向函数类型的指针。

摘自 C 标准(6.7.6.3 函数声明符(包括原型(prototype)))

8 A declaration of a parameter as ‘‘function returning type’’ shall beadjusted to ‘‘pointer to function returning type’’, as in 6.3.2.1

例如这两个函数声明

void f( void( int ) );

void f( void ( * )( int ) );

声明相同的函数。

另一方面(6.3.2.1 左值、数组和函数指示符)

4 A function designator is an expression that has function type.Except when it is the operand of the sizeof operator65) or the unary &operator, a function designator with type ‘‘function returning type’’is converted to an expression that has type ‘‘pointer to functionreturning type’’

这是一个演示程序。

#include <stdio.h>

typedef void F( int );

F display;

void g( F );

void g( F *f )
{
int x = 10;

f( x );
}

void display( int x )
{
printf( "x = %d\n", x );
}

int main(void)
{
F *fp = display;

g( fp );

return 0;
}

程序输出为

x = 10

调查该程序。

注意这一点,例如这个 typedef

typedef void F( int );

可以等效地重写为

void typedef F( int );

关于c - C11 标准编译器接受的替代函数指针语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68681763/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com