Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
QAMessage を QABinaryMessage にキャストします。
public virtual QABinaryMessage * castToBinaryMessage()
QABinaryMessage へのポインター。処理後のメッセージが QABinaryMessage のインスタンスではない場合は NULL。
変換演算子を使用して、この QAMessage を QABinaryMessage に変換することもできます。
変換演算子を使用して QAMessage を QABinaryMessage に変換するには、次のようにします。
QAMessage *msg; QABinaryMessage *bmsg; ... bmsg = (QABinaryMessage *)(*msg);