real class : real(int) fitter
Description
Get a new instance of real class with the same value as the argument.
Syntax
new real(int value)
Arguments
Class | Name | Description |
int | 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(10);
Notes
None.
Links for reference
None.