System::Decimal::operator* 方法

Decimal::operator* method

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

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

ReturnValue

一个新的 Decimal 类实例,表示当前对象和指定对象所表示的值相乘的结果

另见


title: System::Decimal::operator< 方法 linktitle: operator< 次标题: Aspose.Font for C++ description: ‘System::Decimal::operator< 方法。确定当前对象所表示的值是否小于指定对象所表示的值(在 C++ 中)。’ 类型: 文档 weight: 2300 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: 2700 url: /cpp/system/decimal/operator_/

Decimal::operator> method

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

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

ReturnValue

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

另见