System::WeakReference< T >::operator!= メソッド

WeakReference< T >::operator!=(const WeakReference<T>&) const method

参照されたオブジェクトを別のインスタンス WeakReference クラスと比較します。

bool System::WeakReference<T>::operator!=(const WeakReference<T> &other) const
パラメーター説明
otherconst WeakReference<T>&Object と比較します。

ReturnValue

比較対象のオブジェクトが異なるオブジェクトを参照している場合は true、同じオブジェクトの場合は false。

参照

WeakReference< T >::operator!=(std::nullptr_t) const method

参照されているオブジェクトが null でないかチェックします。

bool System::WeakReference<T>::operator!=(std::nullptr_t) const

ReturnValue

参照されたオブジェクトが null でない場合は true、そうでない場合は false。

参照