System::Decimal::operator*= 方法
内容
[
隐藏
]Decimal::operator*= method
将对当前对象和指定对象所表示的值进行乘法运算的结果赋给当前对象的新值。
Decimal & System::Decimal::operator*=(const Decimal &d)
| Parameter | Type | 描述 |
|---|---|---|
| d | const Decimal& | 表示乘数的 Decimal 对象 |
ReturnValue
对自身的引用
另见
- Class Decimal
- Class Decimal
- Namespace System
- Library Aspose.Page for C++
title: System::Decimal::operator<= 方法 linktitle: operator<= second_title: Aspose.Page for C++ description: ‘System::Decimal::operator<= 方法。确定当前对象所表示的值是否小于或等于指定对象所表示的值(C++)。’ type: docs weight: 2400 url: /cpp/system/decimal/operator_=/
Decimal::operator<= method
确定当前对象表示的值是否小于或等于指定对象表示的值。
bool System::Decimal::operator<=(const Decimal &d) const
| Parameter | Type | 描述 |
|---|---|---|
| d | const Decimal& | 用于与当前对象比较的 Decimal 对象 |
ReturnValue
如果当前对象所表示的值小于或等于 d 所表示的值,则为 true;否则为 false
另见
- Class Decimal
- Class Decimal
- Namespace System
- Library Aspose.Page for C++
title: System::Decimal::operator>= 方法 linktitle: operator>= second_title: Aspose.Page for C++ description: ‘System::Decimal::operator>= 方法。确定当前对象所表示的值是否大于或等于指定对象所表示的值(C++)。’ type: docs weight: 2800 url: /cpp/system/decimal/operator_=/
Decimal::operator>= method
确定当前对象表示的值是否大于或等于指定对象表示的值。
bool System::Decimal::operator>=(const Decimal &d) const
| Parameter | Type | 描述 |
|---|---|---|
| d | const Decimal& | 用于与当前对象比较的 Decimal 对象 |
ReturnValue
如果当前对象所表示的值大于或等于 d 所表示的值,则为 true;否则为 false
另见
- Class Decimal
- Class Decimal
- Namespace System
- Library Aspose.Page for C++