int class : int() fitter
Description
Get a new instance of int class with initial value.
Syntax
new int()
Arguments
None.
Return value
Class | Description |
int | A new instance of int class with initial value. |
Sample code
int newInt = new int();
Notes
The initial value is 0.
Links for reference
None.