- Declare datatype.
- byte (number,1 bytes)
- short (number,2 bytes)
- int (number,4 bytes)
- long (number,8 bytes)
- float(float number,4 bytes)
- double (float number,8 bytes)
- char (a character , 2 bytes)
- Boolean (true or false , 1 bytes)
- Declare (Example)
- short my-variable=10;
- float my-decimal=(float) 4.5;
- double my-double=11.56;
- char my-char=’A’;
0 Comments:
Post a Comment