What is the type conversion operator ( ) in Java and how to use it?


Cast operator in java is used to convert one data type to other.

Example

public class Sample {
   public static void main(String args[]) {
      double d = 20.3;
      int i = (int)d;
      System.out.println(i);
   }
}

Output

20

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 20-Feb-2020

787 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements