类型和函数名称之间的单词含义是什么?

发布于 2024-11-07 05:34:37 字数 209 浏览 0 评论 0原文

例如,

static int some_words_in_question some_function(){
     return 0;
}

C 编程中 some_words_in_question 的含义和用途是什么? 如果您因为仍然不明白我的要求而需要更多示例,您可以在 Linux 内核源代码上查看。

For example,

static int some_words_in_question some_function(){
     return 0;
}

what's the meaning and the purpose of some_words_in_question in C programming?
If you need more sample because you still don't understand what I ask, you can see on Linux Kernel source code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

擦肩而过的背影 2024-11-14 05:34:37

虽然一些例子很好,但我想你指的是编译器特定的扩展。这些可以是函数的调用约定(定义如何在实际机器代码中调用函数)或指定函数或声明的某些特殊属性的其他扩展。由于这些完全是特定于编译器的,因此它们不是标准 C 语言的一部分,并且通常引用有关实际编译的机器代码的平台相关属性。

Although some examples would be good, I suppose you refer to compiler specific extensions. These can be calling conventions for the function (defining how the function is to be called in the actual machine code) or other extensions specifying some special property of the function or declaration. As these are completely compiler-specific they are not part of the standard C language and often refer to platform-dependent properties regarding the actual compiled machine code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文