C 中的特殊参数声明函数
可能的重复:
C 函数语法,参数列表后声明的参数类型
此 C 语法有什么用处?
为什么声明放在 func() 和 {} 之间?
大家好,
我下载了glibc。我想重用这个库中的一些代码部分,但是这段代码中有一些奇怪的东西。事实上,参数声明很奇怪。 que 括号后声明的参数类型。我以前从未见过。这种声明是什么样的?我无法编译它。
void
_ufc_doit_r(itr, __data, res)
ufc_long itr, *res;
struct crypt_data * __restrict __data;
{
/*CODE HERE */
}
Possible Duplicates:
C function syntax, parameter types declared after parameter list
What is useful about this C syntax?
Why are declarations put between func() and {}?
Hi guys,
I downloaded the glibc. I want to reuse some code part from this librairy, but there is somethings weird in this code. In fact, the parameters declaration are strange. The type of the parameters declared after que parantheses. I never saw that before. What is this kind of declaration? I not am able to compile it.
void
_ufc_doit_r(itr, __data, res)
ufc_long itr, *res;
struct crypt_data * __restrict __data;
{
/*CODE HERE */
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这被称为“K&R”风格,来自 Kernighan 和 Ritchie,他们写了这本书 C 编程语言。在那本书的第一版中,上面是声明参数类型的唯一方法。我相信第二版使用标准样式,类型和名称都在括号内:
K&R 样式是一种非常古老的声明参数的样式,但有些人仍然使用它,以便他们的代码可以在非常旧的编译器上编译。
This is called "K&R" style, from Kernighan and Ritchie, who wrote the book The C Programming Language. In the first edition of that book, the above was the only way to declare the types of parameters. I believe the second edition uses the standard style, with the types and names both within parentheses:
K&R style is a very old style of declaring parameters, but some people still use it so their code can compile on very old compilers.
这是声明参数数据类型的旧风格。它的现代等价物是:
That's the old style of declaring the datatypes for the arguments. It's modern equivelent would be: