real class : L getter
Description
Gets an instance of long type that have a value that truncate the fractional part.
Syntax
realInstance.L
Arguments
None
Return value
Class | Description |
long | An instance of long type that have a value that truncate the fractional part. |
Sample code
//anyReal is a instance of real type.
long cast = anyReal.L;
Notes
Exception is thrown if the value of the instance is over the limit of long type.
Links for reference
None