Type Casting in JavaIn Java, type casting is a method or process that converts a data type into another data type in both ways manually and automatically. The automatic conversion is done by the compiler and manual conversion performed by the programmer. In this section, we will discuss type casting and its types with proper examples. Type castingConvert a value from one data type to another data type is known as type casting. Types of Type CastingThere are two types of type casting:
Widening Type CastingConverting a lower data type into a higher one is called widening type casting. It is also known as implicit conversion or casting down. It is done automatically. It is safe because there is no chance to lose data. It takes place when:
For example, the conversion between numeric data type to char or Boolean is not done automatically. Also, the char and Boolean data types are not compatible with each other. Let's see an example. WideningTypeCastingExample.java Output Before conversion, the value is: 7 After conversion, the long value is: 7 After conversion, the float value is: 7.0 In the above example, we have taken a variable x and converted it into a long type. After that, the long type is converted into the float type. Narrowing Type CastingConverting a higher data type into a lower one is called narrowing type casting. It is also known as explicit conversion or casting up. It is done manually by the programmer. If we do not perform casting then the compiler reports a compile-time error. Let's see an example of narrowing type casting. In the following example, we have performed the narrowing type casting two times. First, we have converted the double type into long data type after that long data type is converted into int type. NarrowingTypeCastingExample.java Output Before conversion: 166.66 After conversion into long type: 166 After conversion into int type: 166 Next TopicConditional Operator in Java |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India