Does Qt support virtual pure slots?

前端 未结 2 1374
借酒劲吻你
借酒劲吻你 2021-01-30 12:16

My GUI project in Qt has a lot of \"configuration pages\" classes which all inherit directly from QWidget.

Recently, I realized that all these

2条回答
  •  礼貌的吻别
    2021-01-30 12:51

    Yes, just like regular c++ pure virtual methods. The code generated by MOC does call the pure virtual slots, but that's ok since the base class can't be instantiated anyway...

    Again, just like regular c++ pure virtual methods, the class cannot be instantiated until the methods are given an implementation.

    One thing: in the subclass, you actuallly don't need to mark the overriden methods as slots. First, they're already implemented as slots in the base class. Second, you're just creating more work for the MOC and compiler since you're adding a (tiny) bit more code. Trivial, but whatever.

    So, go for it..

提交回复
热议问题