Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
查看 qwidget.h,我发现析构函数如下:
~QWidget();
我想知道为什么这没有被声明为虚拟
析构函数是虚拟的,因为 QWidget 派生自 QObject ,它确实有一个虚拟析构函数。为什么它没有在代码中声明为 virtual 要么是样式问题,要么是无害的错误。我会自己宣布它是虚拟的。