gpt4 book ai didi

c - 函数返回值定义为常量

转载 作者:太空狗 更新时间:2023-10-29 16:32:11 26 4
gpt4 key购买 nike

我曾多次看到像这样使用 const 类型限定符定义的函数:

const int foo (int arg)

这有什么意义呢?函数的返回值无论如何都不能改变..

最佳答案

在C中,确实没用,编译器可能会发出相应的警告:

$ echo 'const int foo (int arg);' | clang -Weverything -fsyntax-only -xc -
<stdin>:1:1: warning: 'const' type qualifier on return type has no effect
[-Wignored-qualifiers]
const int foo (int arg);
^~~~~~
1 warning generated.

关于c - 函数返回值定义为常量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30164489/

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