System::operator<= 方法
内容
[
隐藏
]System::operator<=(const T1&, const Nullable<T2>&) method
通过对这些值应用 operator<=(),确定指定的值是否小于或等于由指定的 Nullable 对象表示的值。
template<typename T1,typename T2> std::enable_if<!IsNullable<T1>::value, bool>::type System::operator<=(const T1 &some, const Nullable<T2> &other)
| Parameter | 描述 |
|---|---|
| T1 | 第一个比较值的类型 |
| T2 | 表示第二个比较值的 Nullable 对象的底层类型 |
| Parameter | Type | 描述 |
|---|---|---|
| 某些 | const T1& | 对将用作第一个比较值的值的常量引用 |
| other | const Nullable<T2>& | 对 Nullable 对象的常量引用,其表示的值将用作第二个比较值 |
ReturnValue
如果第一个比较数小于或等于第二个比较数,则为 true;否则为 false
另见
- Class Nullable
- Namespace System
- Library Aspose.Page for C++
System::operator<=(std::nullptr_t, const DateTimeOffset&) method
bool System::operator<=(std::nullptr_t, const DateTimeOffset &)
另见
- Class DateTimeOffset
- Namespace System
- Library Aspose.Page for C++
System::operator<=(std::nullptr_t, const Nullable<T>&) method
始终返回 false。
template<typename T> bool System::operator<=(std::nullptr_t, const Nullable<T> &)
另见
- Class Nullable
- Namespace System
- Library Aspose.Page for C++
System::operator<=(std::nullptr_t, DateTime) method
bool System::operator<=(std::nullptr_t, DateTime)
另见
- Class DateTime
- Namespace System
- Library Aspose.Page for C++
System::operator<=(std::nullptr_t, TimeSpan) method
bool System::operator<=(std::nullptr_t, TimeSpan)
另见
- Class TimeSpan
- Namespace System
- Library Aspose.Page for C++
title: System::operator>= 方法 linktitle: operator>= second_title: Aspose.Page for C++ description: ‘System::operator>= 方法。通过在 C++ 中对这些值应用 operator>=(),确定指定的值是否大于或等于由指定的 Nullable 对象表示的值。’ type: docs weight: 34600 url: /cpp/system/operator_=/
System::operator>=(const T1&, const Nullable<T2>&) method
通过对这些值应用 operator>=(),确定指定的值是否大于或等于由指定的 Nullable 对象表示的值。
template<typename T1,typename T2> std::enable_if<!IsNullable<T1>::value, bool>::type System::operator>=(const T1 &some, const Nullable<T2> &other)
| Parameter | 描述 |
|---|---|
| T1 | 第一个比较值的类型 |
| T2 | 表示第二个比较值的 Nullable 对象的底层类型 |
| Parameter | Type | 描述 |
|---|---|---|
| 某些 | const T1& | 对将用作第一个比较值的值的常量引用 |
| other | const Nullable<T2>& | 对 Nullable 对象的常量引用,其表示的值将用作第二个比较值 |
ReturnValue
如果第一个比较数大于或等于第二个比较数,则为 true;否则为 false
另见
- Class Nullable
- Namespace System
- Library Aspose.Page for C++
System::operator>=(std::nullptr_t, const DateTimeOffset&) method
bool System::operator>=(std::nullptr_t, const DateTimeOffset &)
另见
- Class DateTimeOffset
- Namespace System
- Library Aspose.Page for C++
System::operator>=(std::nullptr_t, const Nullable<T>&) method
始终返回 false。
template<typename T> bool System::operator>=(std::nullptr_t, const Nullable<T> &)
另见
- Class Nullable
- Namespace System
- Library Aspose.Page for C++
System::operator>=(std::nullptr_t, DateTime) method
bool System::operator>=(std::nullptr_t, DateTime)
另见
- Class DateTime
- Namespace System
- Library Aspose.Page for C++
System::operator>=(std::nullptr_t, TimeSpan) method
bool System::operator>=(std::nullptr_t, TimeSpan)
另见
- Class TimeSpan
- Namespace System
- Library Aspose.Page for C++