System::Nullable::operator< 方法
内容
[
隐藏
]Nullable::operator<(const Nullable<T1>&) const method
通过对这些值应用 operator<(),确定当前对象表示的值是否小于指定的 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.Font for C++
Nullable::operator<(const T1&) const method
通过对这些值应用 operator<(),确定当前对象表示的值是否小于指定的值。
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.Font for C++
Nullable::operator<(std::nullptr_t) const method
始终返回 false。
bool System::Nullable<T>::operator<(std::nullptr_t) const
另见
- Class Nullable
- Namespace System
- Library Aspose.Font for C++
title: System::Nullable::operator> 方法 链接标题: operator> 次标题: Aspose.Font for C++ description: ‘System::Nullable::operator> 方法。确定当前对象表示的值是否通过对这些值应用 operator>() 与指定的 Nullable 对象表示的值进行比较,从而在 C++ 中判断是否更大。’ 类型: 文档 weight: 2000 url: /cpp/system/nullable/operator_/
Nullable::operator>(const Nullable<T1>&) const method
确定当前对象表示的值是否通过对这些值应用 operator>() 来大于指定的 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.Font for C++
Nullable::operator>(const T1&) const method
确定当前对象表示的值是否通过对这些值应用 operator>() 来大于指定的值。
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.Font for C++
Nullable::operator>(std::nullptr_t) const method
始终返回 false。
bool System::Nullable<T>::operator>(std::nullptr_t) const
另见
- Class Nullable
- Namespace System
- Library Aspose.Font for C++