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 对象的底层类型
参数类型描述
otherconst Nullable<T1>&用于比较的 Nullable 对象的常量引用

ReturnValue

如果当前对象表示的值小于或等于指定的 Nullable 对象表示的值,则为 true;否则为 false

另见

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。

另见

Nullable::operator<=(std::nullptr_t) const method

始终返回 false。

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

另见


title: System::Nullable::operator>= 方法 链接标题: operator>= 次标题: Aspose.Font for C++ description: ‘System::Nullable::operator>= 方法。确定当前对象表示的值是否大于或等于由指定的 Nullable 对象表示的值,方法是对这些值在 C++ 中应用 operator>=()。’ 类型: 文档 weight: 2100 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 对象的底层类型
参数类型描述
otherconst Nullable<T1>&用于比较的 Nullable 对象的常量引用

ReturnValue

如果当前对象表示的值大于或等于指定的 Nullable 对象表示的值,则为 true;否则为 false。

另见

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。

另见

Nullable::operator>=(std::nullptr_t) const method

始终返回 false。

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

ReturnValue

始终为 false

另见


title: System::Nullable::operator|= 方法 linktitle: operator|= 次标题: Aspose.Font for C++ description: ‘System::Nullable::operator|= 方法。使用指定的值作为右侧参数,在 C++ 中对当前对象表示的值应用 operator|=()。’ 类型: 文档 weight: 2200 url: /cpp/system/nullable/operator_=/

Nullable::operator|= method

使用指定的值作为右侧参数,对当前对象表示的值应用 operator|=()

template<typename T1> std::enable_if<std::is_same<T1, bool>::value, Nullable<T>>::type System::Nullable<T>::operator|=(bool other)
参数描述
T1使 SFINAE 工作的模板参数。
参数类型描述
其他bool一个布尔值,用作 [operator 的右侧值

ReturnValue

对自身的引用。

另见