`qt_noop` 的目的是什么
我刚刚发现 qglobal.h 中存在 qt_noop()
定义:
inline void qt_noop() {}
它有什么意义?
I just found the existence of qt_noop()
define in the qglobal.h as:
inline void qt_noop() {}
What's the point of it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“
noop
”名称是“no operation”的缩写,这意味着它是一个不执行任何操作的占位符函数。您可能还知道
NOP
,它存在于汇编语言中。我知道它在一些宏内部使用,这些宏应该只为调试构建做一些事情,例如:
The "
noop
" name is short for "no operation", meaning it is a place-holder function that does nothing.You may also know
NOP
, which exists in assembly-language.I know it's used internally in some macros that should do something only for debug builds, for example: