static inline声明

一、static inline 函数

此声明一般出现在 .h 头文件中。

声明的作用:这类希望全局使用又希望增加效率的函数实现在头文件中static inline

二、以此方式声明函数易出现编译错误

.\Libraries\inc\fsl_clock.h(707): warning:  #260-D: explicit type is missing ("int" assumed)
static ____inline void CLOCK_EnableClock(clock_ip_name_t clk)
.\Libraries\inc\fsl_clock.h(707): error:  #65: expected a ";"

原因: 因为inline 是C99才有的关键字,C89没有,有部分编译器不支持,或者部分支持,如支持__inline 或 __inline__等

解决方法:
inline’ is a keyword in C99 and C++; so the original code is legal in those languages. ‘__inline’ is an implementation-specific extension that armcc allows in C90, C99 and C++ (as do some other compilers).

大概意思是说用 __inline 声明 在C90, C99 和 C++中都能进行编译

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值