QT函数带有外部链接但没有在头文件中声明(QT noreturn属性添加)
Qt noreturn 属性添加
*.cpp:21:1: warning: function ‘f’ could be declared with attribute ‘noreturn’
解决Qt去警告: could be declared with attribute 'noreturn’的方法在函数声明的地方前加
[[noreturn]]
例如:
1 2 3 4 | //h文件 [[ noreturn ]] void test(); //cpp文件 void test(){}; |
原理:
The items between [[ ]] in a function (variable…) declaration are attributes that provide the compiler with extra information about the item they are attached to. The compiler can use these in a range of ways. The “noreturn” attribute has been around since C++ 11.
[[ noreturn ]] attached to a function declaration informs the compiler that control will not return from the function (as in the case of an unconditional throw()). They go in the first declaration of the function. If f() is declared in a header file then this is the place to put it. If the function exists only in a single CPP file, i.e. it is private, with no other declaration then it goes there.
The second code snippet you posted is an example that can lead to undefined behaviour, i.e. returning from a function you explicitly declared would not return control.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | // >>> function.h #ifndef FUNCTION_H #define FUNCTION_H [[ noreturn ]] void f(); void g(); #endif // FUNCTION_H // >>> function.cpp #include <iostream> using namespace std; #include "function.h" void f() { cout << "No return" << endl; throw 1; } void g() { cout << "No return" << endl;; throw 1; } // >>> main.cpp #include <iostream> using namespace std; #include "function.h" [[ noreturn ]] void h() { cout << "No return" << endl; throw 3; } int main( int argc, char **argv) { cout << "Before f()" << endl; f(); // this should be unreachable code cout << "Before g()" << endl; g(); cout << "Before h()" << endl; h(); } |
Functions f() and g() have identical function code but, because the compiler knows that f() will not return, it may generate different code for these function or calls to them. In my experiments with GNU C++ there is no code generated for the calls to g() and h() because they cannot be reached after a call to f().
- The items between [[ ]] in a function (variable…) declaration are attributes that provide the compiler with extra information about the item they are attached to.
- The compiler can use these in a range of ways.
- The “noreturn” attribute has been around since C++ 11.
- [[ noreturn ]] attached to a function declaration informs the compiler that control will not return from the function (as in the case of an unconditional throw()).
- They go in the first declaration of the function.
- If f() is declared in a header file then this is the place to put it.
- If the function exists only in a single CPP file, i.e. it is private, with no other declaration then it goes there.
- The second code snippet you posted is an example that can lead to undefined behaviour, i.e. returning from a function you explicitly declared would not return control.
// >>>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | function.h #ifndef FUNCTION_H #define FUNCTION_H [[ noreturn ]]voidf(); void g(); #endif // FUNCTION_H// >>> function.cpp #include <iostream> usingnamespace std; #include "function.h" void f() { cout << "No return" << endl;throw1;} void g() { cout << "No return" << endl;;throw1;} // >>> main.cpp#include <iostream>usingnamespace std;#include "function.h"[[ noreturn ]]voidh(){ cout <<"No return"<< endl;throw3;}intmain(int argc,char**argv){ cout <<"Before f()"<< endl;f();// this should be unreachable code cout <<"Before g()"<< endl;g(); cout <<"Before h()"<< endl;h();} |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 【自荐】一款简洁、开源的在线白板工具 Drawnix