类型和函数名称之间的单词含义是什么?
例如,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然一些例子很好,但我想你指的是编译器特定的扩展。这些可以是函数的调用约定(定义如何在实际机器代码中调用函数)或指定函数或声明的某些特殊属性的其他扩展。由于这些完全是特定于编译器的,因此它们不是标准 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.