System::operator* 方法
内容
[
隐藏
]System::operator* method
返回一个新的 Decimal 类实例,表示指定值与指定的 Decimal 对象所代表的值相乘的结果。
template<typename T,typename _> Decimal System::operator*(const T &x, const Decimal &d)
| 参数 | 类型 | 描述 |
|---|---|---|
| x | const T& | 第一个乘数 |
| d | const Decimal& | 表示第二个乘数的 Decimal 对象 |
ReturnValue
一个新的 Decimal 类实例,表示 x 与 d 所代表的值相乘的结果。
另见
- Class Decimal
- Namespace System
- Library Aspose.Font for C++
title: System::operator< 方法 linktitle: operator< 次标题: Aspose.Font for C++ description: ‘System::operator< 方法。确定指定的值是否小于由指定的 Nullable 对象表示的值,方法是对这些值应用 operator<() 于 C++。’ 类型: 文档 weight: 28700 url: /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)
| 参数 | 描述 |
|---|---|
| T1 | 第一个比较值的类型 |
| T2 | 表示第二个比较值的 Nullable 对象的底层类型 |
| 参数 | 类型 | 描述 |
|---|---|---|
| 一些 | const T1& | 用于作为第一个比较值的值的常量引用 |
| other | const Nullable<T2>& | 用于作为第二个比较值的值的 Nullable 对象的常量引用 |
ReturnValue
如果第一个比较项小于第二个比较项,则为 true;否则为 false
另见
- Class Nullable
- Namespace System
- Library Aspose.Font for C++
System::operator<(std::nullptr_t, const DateTimeOffset&) method
bool System::operator<(std::nullptr_t, const DateTimeOffset &)
另见
- Class DateTimeOffset
- Namespace System
- Library Aspose.Font 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.Font for C++
System::operator<(std::nullptr_t, DateTime) method
bool System::operator<(std::nullptr_t, DateTime)
另见
- Class DateTime
- Namespace System
- Library Aspose.Font for C++
System::operator<(std::nullptr_t, TimeSpan) method
bool System::operator<(std::nullptr_t, TimeSpan)
另见
- Class TimeSpan
- Namespace System
- Library Aspose.Font for C++
title: System::operator> 方法 链接标题: operator> 次标题: Aspose.Font for C++ description: ‘System::operator> 方法。确定指定的值是否大于由指定的 Nullable 对象表示的值,方法是对这些值应用 operator>() 于 C++。’ 类型: 文档 weight: 34200 url: /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)
| 参数 | 描述 |
|---|---|
| T1 | 第一个比较值的类型 |
| T2 | 表示第二个比较值的 Nullable 对象的底层类型 |
| 参数 | 类型 | 描述 |
|---|---|---|
| 一些 | const T1& | 用于作为第一个比较值的值的常量引用 |
| other | const Nullable<T2>& | 用于作为第二个比较值的值的 Nullable 对象的常量引用 |
ReturnValue
如果第一个比较项大于第二个比较项,则为 true;否则为 false
另见
- Class Nullable
- Namespace System
- Library Aspose.Font for C++
System::operator>(std::nullptr_t, const DateTimeOffset&) method
bool System::operator>(std::nullptr_t, const DateTimeOffset &)
另见
- Class DateTimeOffset
- Namespace System
- Library Aspose.Font 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.Font for C++
System::operator>(std::nullptr_t, DateTime) method
bool System::operator>(std::nullptr_t, DateTime)
另见
- Class DateTime
- Namespace System
- Library Aspose.Font for C++
System::operator>(std::nullptr_t, TimeSpan) method
bool System::operator>(std::nullptr_t, TimeSpan)
另见
- Class TimeSpan
- Namespace System
- Library Aspose.Font for C++