System::Decimal::operator*= 메서드
내용물
[
숨다
]Decimal::operator*= method
현재 객체에 현재와 지정된 객체가 나타내는 값의 곱셈 결과값을 새로운 값으로 할당합니다.
Decimal & System::Decimal::operator*=(const Decimal &d)
| 매개변수 | 형식 | 설명 |
|---|---|---|
| d | const Decimal& | 곱셈 인자를 나타내는 Decimal 객체 |
ReturnValue
self에 대한 참조
또 보기
- 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
| 매개변수 | 형식 | 설명 |
|---|---|---|
| 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
| 매개변수 | 형식 | 설명 |
|---|---|---|
| d | const Decimal& | 현재 객체와 비교할 Decimal 객체 |
ReturnValue
현재 객체가 나타내는 값이 d가 나타내는 값보다 크거나 같으면 true, 그렇지 않으면 false
또 보기
- Class Decimal
- Class Decimal
- Namespace System
- Library Aspose.Page for C++