Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

Type conversion

Data types are in JAVA:

(Implicit)

Byte>short>int>long>float>double
Widening Process
short s=1;

int x=s;

(explicit) Type Casting

Double>float>long>int>short>byte
Narrowing Process
Int x=100;

Byte b= liter

Java Literals
boolean friday = true;

float dia=1.56;

int x=12345;

floating point literals


double dbl=12.8;

float flt=12.8F;

String & Character literals


char mychar= ‘1’;

String str=”hello everyone”;

String str1=”hello everyone’\n’”;


Boolean literals
boolean healthGood=true;

You might also like