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


Advertisements