Advertisements
Advertisements
Question
How is implicit conversion different from explicit conversion?
Answer in Brief
Solution
In Java, type conversion can be implicit or explicit.
- Implicit: In a mixed expression, the result's data type is automatically changed, without the user's input, to the highest type possible in the expression. Implicit type conversion/coercion is the term used to describe this type of conversion scheme.
- Example:
int a;
long, c;
c = a + b; -
In this example, a is automatically transformed to the long data type.
- Example:
- Explicit: This method of type conversion allows users to transform one data type to another based on their preferences. This signifies the user expects the system to return the desired data type.
- Example:
int a, b;
float x = (float) a + b;
- Example:
shaalaa.com
Is there an error in this question or solution?
Chapter 1.03: Values and Data Types - EXERCISES [Page 33]