Friday, April 19, 2024 05:42

Posts Tagged ‘Implicit type conversion’

Implicit type conversion

Friday, January 6th, 2017

As we discussed in the last lesson, implicit type conversion (hidden conversion) is only possible when there is no risk of any data loss during the transformation (for instance, when converting a lower range number, like an int, to a higher range number, like a long).… Read more

Casting and type conversion

Friday, January 6th, 2017

Casting and type conversion generally refers to modifying a data type into another data type. In order to perform an operation on two data types, we need to convert both to the same data type. Type conversion if of two kinds: implicit and explicit.Read more


Follow the white rabbit