Searching all over the net, I found no references of QMetaObject, except for this. This class has ot开发者_运维知识库her methods as well. Who knows where to find all details about QMetaObject class?
You can find all information about QMetaObject by downloading and reading the sources from https://doc.qt.io/. "activate" are 4 private static member functions of QMetaObject declared in qobjectdefs.h and are for "internal index-based signal activation".
QMetaObject is about signal and slot mechanism. Look this
https://doc.qt.io/archives/qt-4.7/metaobjects.html#meta-object-system
https://doc.qt.io/archives/qt-4.7/metaobjects.html#qt-s-property-system
https://doc.qt.io/archives/qt-4.7/signalsandslots.html
精彩评论