System::SmartPtr::operator* method

SmartPtr::operator* method

指し示されたオブジェクトへの参照を取得します。ポインタが null でないことをアサートします。

Pointee_ & System::SmartPtr<T>::operator*() const

ReturnValue

指されたオブジェクトへの参照。

参照


タイトル: System::SmartPtr::operator< method リンクタイトル: operator< second_title: Aspose.Page for C++ 説明: ‘System::SmartPtr::operator< method. C++ の SmartPtr クラスに対して、より小さい比較のセマンティクスを提供します。’ type: docs weight: 2700 URL: /cpp/system/smartptr/operator_/

SmartPtr::operator<(SmartPtr<Y> const&) const method

SmartPtr クラスに対して、より小さい比較のセマンティクスを提供します。

template<class Y> bool System::SmartPtr<T>::operator<(SmartPtr<Y> const &x) const
パラメーター説明
Y現在のポインタと比較するためのポインタの型。
パラメーター説明
xSmartPtr<Y> const&現在のポインタと比較するポインタ。

ReturnValue

SmartPtr が参照するオブジェクトが x より ’less’ の場合は true、そうでない場合は false。

参照

SmartPtr::operator<(Y *) const method

SmartPtr クラスに対して、より小さい比較のセマンティクスを提供します。

template<class Y> bool System::SmartPtr<T>::operator<(Y *p) const
パラメーター説明
Y現在のポインタと比較するためのポインタの型。
パラメーター説明
pY *現在のポインタと比較するポインタ。

ReturnValue

オブジェクトが SmartPtr によって参照され、p より ’less’ な場合は true、そうでなければ false。

参照