System::Nullable::operator== メソッド
コンテンツ
[
隠れる
]Nullable::operator==(const Nullable<T1>&) const method
現在のオブジェクトが表す値が、指定された Nullable オブジェクトが表す値と等しいかどうかを判断します。
template<typename T1> bool System::Nullable<T>::operator==(const Nullable<T1> &other) const
| パラメーター | 説明 |
|---|---|
| T1 | 比較対象となるNullableオブジェクトの基になる型 |
| パラメーター | 型 | 説明 |
|---|---|---|
| other | const Nullable<T1>& | 比較対象となるNullableオブジェクトへの定数参照 |
ReturnValue
現在のオブジェクトが表す値が、指定された Nullable オブジェクトが表す値と等しい場合は True、そうでなければ - false
参照
- Class Nullable
- Class Nullable
- Namespace System
- Library Aspose.Page for C++
Nullable::operator==(const T1&) const method
現在のオブジェクトが表す値が指定された値と等しいかどうかを判断します。
template<typename T1> std::enable_if<!IsNullable<T1>::value, bool>::type System::Nullable<T>::operator==(const T1 &other) const
| パラメーター | 説明 |
|---|---|
| T1 | 比較対象となる値の型 |
| パラメーター | 型 | 説明 |
|---|---|---|
| その他 | const T1& | 比較対象となる値への定数参照 |
ReturnValue
現在のオブジェクトが表す値が、指定された値と等しい場合は True、そうでなければ - false
参照
- Class Nullable
- Namespace System
- Library Aspose.Page for C++
Nullable::operator==(std::nullptr_t) const method
現在のオブジェクトが表す値が null かどうかを判断します。
bool System::Nullable<T>::operator==(std::nullptr_t) const
ReturnValue
現在のオブジェクトが表す値が null の場合は True、そうでなければ - false
参照
- Class Nullable
- Namespace System
- Library Aspose.Page for C++