System::operator* 方法

System::operator* method

返回一个新的 Decimal 类实例,该实例表示指定值与指定 Decimal 对象所表示的值相乘的结果。

template<typename T,typename _> Decimal System::operator*(const T &x, const Decimal &d)
ParameterType描述
xconst T&第一个乘数
dconst Decimal&表示第二个乘数的 Decimal 对象

ReturnValue

一个新的 Decimal 类实例,表示 xd 所表示的值相乘的结果。

另见


title: System::operator< 方法 链接标题: operator< second_title: Aspose.Page for C++ description: ‘System::operator< 方法。确定指定的值是否小于由指定的 Nullable 对象表示的值,通过对这些值应用 operator<() 在 C++ 中。’ type: docs 权重: 28600 网址: /cpp/system/operator_/

System::operator<(const T1&, const Nullable<T2>&) method

确定指定的值是否小于由指定的 Nullable 对象表示的值,通过对这些值应用 operator<()

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 对象的底层类型
ParameterType描述
某些const T1&对将用作第一个比较值的值的常量引用
otherconst Nullable<T2>&Nullable 对象的常量引用,其表示的值将用作第二个比较值

ReturnValue

如果第一个比较对象小于第二个比较对象,则为 true,否则为 false

另见

System::operator<(std::nullptr_t, const DateTimeOffset&) method

bool System::operator<(std::nullptr_t, const DateTimeOffset &)

另见

System::operator<(std::nullptr_t, const Nullable<T>&) method

始终返回 false。

template<typename T> bool System::operator<(std::nullptr_t, const Nullable<T> &)

另见

System::operator<(std::nullptr_t, DateTime) method

bool System::operator<(std::nullptr_t, DateTime)

另见

System::operator<(std::nullptr_t, TimeSpan) method

bool System::operator<(std::nullptr_t, TimeSpan)

另见


标题: System::operator> 方法 链接标题: operator> second_title: Aspose.Page for C++ description: ‘System::operator> 方法。确定指定的值是否大于由指定的 Nullable 对象表示的值,通过对这些值应用 operator>() 在 C++ 中。’ type: docs 权重: 34100 网址: /cpp/system/operator_/

System::operator>(const T1&, const Nullable<T2>&) method

确定指定的值是否大于由指定的 Nullable 对象表示的值,通过对这些值应用 operator>()

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 对象的底层类型
ParameterType描述
某些const T1&对将用作第一个比较值的值的常量引用
otherconst Nullable<T2>&Nullable 对象的常量引用,其表示的值将用作第二个比较值

ReturnValue

如果第一个比较对象大于第二个比较对象,则为 true,否则为 false

另见

System::operator>(std::nullptr_t, const DateTimeOffset&) method

bool System::operator>(std::nullptr_t, const DateTimeOffset &)

另见

System::operator>(std::nullptr_t, const Nullable<T>&) method

始终返回 false。

template<typename T> bool System::operator>(std::nullptr_t, const Nullable<T> &)

另见

System::operator>(std::nullptr_t, DateTime) method

bool System::operator>(std::nullptr_t, DateTime)

另见

System::operator>(std::nullptr_t, TimeSpan) method

bool System::operator>(std::nullptr_t, TimeSpan)

另见