In some Qt examples, I see they use QTimer::singleShot(0, this , SLOT(funcA())), why not to call the slot funcA directly? also the same question f
QTimer::singleShot(0, this , SLOT(funcA()))
funcA
These methods can also be used to invoke protected and private members of a class (if they are defined as slots) from a scope that would otherwise require public access.