美文网首页
static, static inline, extern, r

static, static inline, extern, r

作者: dzhou3 | 来源:发表于2018-05-27 07:38 被阅读0次

static, static inline, extern, register, static const

https://stackoverflow.com/questions/7762731/whats-the-difference-between-static-and-static-inline-function

In C, static means the function or variable you define can be only used in this file(i.e. the compile unit)

So, static inline means the inline function which can be used in this file only.

The compile unit should be The Translation Unit

相关文章

网友评论

      本文标题:static, static inline, extern, r

      本文链接:https://www.haomeiwen.com/subject/bbavjftx.html