QMetaObject::Connection Class

class QMetaObject ::Connection

公共函數

Connection ()
Connection (const QMetaObject::Connection & other )
Connection (QMetaObject::Connection && o )
~Connection ()
void swap (QMetaObject::Connection & other )
bool operator bool () const
QMetaObject::Connection & operator= (QMetaObject::Connection && other )
QMetaObject::Connection & operator= (const QMetaObject::Connection & other )

詳細描述

錶示信號-槽 (或信號函子) 連接的句柄。

它可以用於校驗連接是否有效,並斷開連接使用 QObject::disconnect (). For a signal-functor connection without a context object, it is the only way to selectively disconnect that connection.

As Connection is just a handle, the underlying signal-slot connection is unaffected when Connection is destroyed or reassigned.

成員函數文檔編製

Connection:: Connection ()

創建連接實例。

Connection:: Connection (const QMetaObject::Connection & other )

Create a copy of the handle to the other connection

[noexcept] Connection:: Connection ( QMetaObject::Connection && o )

Move-constructs a Connection instance, making it point to the same object that o 所指嚮的。

[noexcept] Connection:: ~Connection ()

析構函數為 QMetaObject::Connection .

[noexcept] void Connection:: swap ( QMetaObject::Connection & other )

交換此連接實例與 other 。此操作很快且從不失敗。

bool Connection:: operator bool () const

返迴 true 若連接有效。

連接有效若調用 QObject::connect 成功。連接無效若 QObject::connect was not able to find the signal or the slot, or if the arguments do not match.

[noexcept] QMetaObject::Connection &Connection:: operator= ( QMetaObject::Connection && other )

移動賦值 other 到此對象,並返迴引用。

QMetaObject::Connection &Connection:: operator= (const QMetaObject::Connection & other )

賦值 other to this connection and returns a reference to this connection.