目录
- Qt Assistant(Qt 助手)
- 构建场景
- 其他一些平替方法
- 参考
Qt Assistant(Qt 助手)
函数名直译过来是【不用的;从未用过的】。
碰到陌生的函数不要慌,直接Qt Assistant查一哈。
Q_UNUSED(name)
Indicates to the compiler that the parameter with the specified name is not used in the body of a function. This can be used to suppress compiler warnings while allowing functions to be defined with meaningful parameter names in their signatures.
翻译过来就是
指示编译器在函数体中不使用指定名称的形参。这可以用来抑制编译器警告,同时允许在函数声明中定义有意义的参数名。
其实到这里你就应该明白这个函数的作用了吧。
构建场景
未使用函数的参数,编译期正常来说会抛出警告(warring),而在部分场景下,我们这么做可能是为了扩展等等。那么又不想看到这么多warring。
那么在Qt中就可以通过Q_UNUSAED(a);
表示让编译期忽略a变量的未使用情况。
其他一些平替方法
1、在函数声明中只写类型不写变量名;
2、 使用C语言的预处理指令。#pragma warning(disable: 4189)
参考
1、Qt Assistant(Qt 助手)