Type conversion (or typecasting) means transfer of data from one data type to another. Implicit conversion happens when the compiler automatically assigns data types, but the source code can also explicitly require a conversion to take place. Simple examples: given the instruction 5+2.0
, the integer 5
is implicitly typecasted into floating point, but given the instruction Number("0x11")
, the string "0x11" is explicitly typecasted as the number 17.
Learn more
General knowledge
- Type conversion on Wikipedia