| 頭: | #include <Connection> |
| qmake: | QT += core |
| Connection () | |
| Connection (const Connection & other ) | |
| Connection (Connection && o ) | |
| ~Connection () | |
| operator bool () const | |
| Connection & | operator= (const Connection & other ) |
| Connection & | operator= (Connection && other ) |
Represents a handle to a signal-slot connection. It can be used to disconnect that connection, or check if the connection was successful
另請參閱 QObject::disconnect ().
創建連接實例。
構造副本為 other .
Move-constructs a Connection instance, making it point to the same object that o 所指嚮的。
析構函數為 QMetaObject::Connection .
返迴
true
若連接有效。
連接有效若調用 QObject::connect 成功。連接無效若 QObject::connect was not able to find the signal or the slot, or if the arguments do not match.
賦值 other to this connection and returns a reference to this connection.
移動賦值 other 到此對象,並返迴引用。