C 中的特殊参数声明函数

发布于 2024-10-31 06:09:36 字数 729 浏览 0 评论 0原文

可能的重复:
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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

等风也等你 2024-11-07 06:09:36

这被称为“K&R”风格,来自 Kernighan 和 Ritchie,他们写了这本书 C 编程语言。在那本书的第一版中,上面是声明参数类型的唯一方法。我相信第二版使用标准样式,类型和名称都在括号内:

void
_ufc_doit_r(ufc_long itr,
            struct crypt_data * __restrict __data,
            ufc_long *res)
{
/*CODE HERE */
}

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:

void
_ufc_doit_r(ufc_long itr,
            struct crypt_data * __restrict __data,
            ufc_long *res)
{
/*CODE HERE */
}

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.

萌︼了一个春 2024-11-07 06:09:36

这是声明参数数据类型的旧风格。它的现代等价物是:

void
_ufc_doit_r(
     ufc_long itr,
     struct crypt_data * __restrict __data,
     ufc_long res
)
{
/*CODE HERE */
}

That's the old style of declaring the datatypes for the arguments. It's modern equivelent would be:

void
_ufc_doit_r(
     ufc_long itr,
     struct crypt_data * __restrict __data,
     ufc_long res
)
{
/*CODE HERE */
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文