real class : real(long) fitter
Description
Get a new instance of real class with the same value as the argument.
Syntax
new real(long value)
Arguments
Class | Name | Description |
long | value | The value that the new instance has. |
Return value
Class | Description |
real | A new instance of real class with specified value. |
Sample code
real newReal = new real(10L);
Notes
None.
Links for reference
None.