System::Decimal::operator*= 方法

Decimal::operator*= method

为当前对象分配一个新值,该值是对当前对象和指定对象所表示的值进行乘法运算的结果。

Decimal & System::Decimal::operator*=(const Decimal &d)
参数类型描述
dconst Decimal&表示乘数的 Decimal 对象

ReturnValue

对自身的引用

另见


title: System::Decimal::operator<= 方法 linktitle: operator<= 次标题: Aspose.Font for C++ description: ‘System::Decimal::operator<= 方法。确定在 C++ 中当前对象所表示的值是否小于或等于指定对象所表示的值。’ 类型: 文档 weight: 2400 url: /cpp/system/decimal/operator_=/

Decimal::operator<= method

确定当前对象所表示的值是否小于或等于指定对象所表示的值。

bool System::Decimal::operator<=(const Decimal &d) const
参数类型描述
dconst Decimal&用于与当前对象比较的 Decimal 对象

ReturnValue

如果当前对象所表示的值小于或等于 d 所表示的值则为 true,否则为 false

另见


title: System::Decimal::operator>= 方法 链接标题: operator>= 次标题: Aspose.Font for C++ description: ‘System::Decimal::operator>= 方法。确定在 C++ 中当前对象所表示的值是否大于或等于指定对象所表示的值。’ 类型: 文档 weight: 2800 url: /cpp/system/decimal/operator_=/

Decimal::operator>= method

确定当前对象所表示的值是否大于或等于指定对象所表示的值。

bool System::Decimal::operator>=(const Decimal &d) const
参数类型描述
dconst Decimal&用于与当前对象比较的 Decimal 对象

ReturnValue

如果当前对象所表示的值大于或等于 d 所表示的值则为 true,否则为 false

另见