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