gpt4 book ai didi

c - 条件表达式: different behavior between compilers中的指针类型不匹配

转载 作者:行者123 更新时间:2023-12-02 11:17:09 26 4
gpt4 key购买 nike

样例代码:

int f1(char c){ return c; };
int f2(int i ){ return i; };

int main(void)
{
return (1 ? f1 : f2)(0);
}
编译器之间的不同行为:
gcc (latest): gcc prog.c -Wall -Wextra -std=c89 -pedantic
prog.c: In function 'main':
prog.c:6:18: warning: pointer type mismatch in conditional expression
6 | return (1 ? f1 : f2)(0);
| ^
prog.c:6:18: error: called object is not a function or function pointer
6 | return (1 ? f1 : f2)(0);
| ~~~~~~~~^~~~~
prog.c:7:1: warning: control reaches end of non-void function [-Wreturn-type]
7 | }
| ^
clang (latest): clang prog.c -Wall -Wextra -std=c89 -pedantic 
prog.c:6:13: warning: pointer type mismatch ('int (*)(char)' and 'int (*)(int)') [-Wpointer-type-mismatch]
return (1 ? f1 : f2)(0);
^ ~~ ~~
prog.c:6:23: error: called object type 'void *' is not a function or function pointer
return (1 ? f1 : f2)(0);
~~~~~~~~~~~~~^
1 warning and 1 error generated.
cl (latest): cl t1.c
t1.c(6): warning C4028: formal parameter 1 different from declaration
Microsoft (R) Incremental Linker Version 14.25.28611.0
Copyright (C) Microsoft Corporation. All rights reserved.

/out:t1.exe
t1.obj
问题:
  • C标准怎么说?
  • gcc和clang:为什么使用called object is not a function or function pointer?那这是什么?
  • cl发出警告,但编译代码。这种行为符合C标准吗?
  • 为什么使用lang called object type 'void *',但使用gcc called object?这个void *来自哪里?
  • 最佳答案

    这样编译:

    int f1(char c) { return c; }
    int f2(int i) { return i; }

    int main()
    {
    int (* f)(int);
    f = (1 ? f1 : f2);
    return f(0);
    }
    并且可以按预期工作,但是我真的没有给您好的答案-仅在可能有助于您或其他人解决您问题的情况下发布此内容。 :)

    关于c - 条件表达式: different behavior between compilers中的指针类型不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64527885/

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