C++ CBinaryData - CBinaryData
In This Topic
CDecimal();
CDecimal(int i);
CDecimal(long l);
CDecimal(LONGLONG ll);
CDecimal(double d);
CDecimal(LPCTSTR lpctstr);
CDecimal(const CDecimal& dec);
CDecimal(const CBigInteger& bi);
|
|
Property |
Description |
|
|
|
Argument - i |
The int value to initialise the Decimal with |
|
|
|
Argument - l |
The long value to initialise the Decimal with |
|
|
|
Argument - d |
he double value to initialise the Decimal with |
|
|
|
Argument - ll |
The LONGLONG (int64) value to initialise the Decimal with |
|
|
|
Argument - lpctstr |
A string representing a number to initialise the Decimal with |
|
|
|
Argument - bi |
A BigInteger to initialise the Decimal with |
|
|
|
Argument - dec |
The Existing Decimal to copy |
|
|
|
Description |
Constructor - initialises a new Decimal object |
|
|
|
Remarks |
default value is 0
|
|
|
|
Example |
|
|