Is there any difference between type casting & type conversion in c++.
|
|
Generally, casting refers to an explicit conversion, whether it's done by C-style cast (
|
||||
|
|
|
Type casting means that you take a string of bits and interpret them differently. Type conversion means that you transform a string of bits from a configuration useful in one context to a configuration useful in another. For example, suppose I write
c will now contain the character 'A', because if I reinterpret the decimal number 65 as a character, I get the letter 'A'. s will not we a pointer to a character string residing at memory location 65. This is almost surely a useless thing to do, as I have no idea what is at that memory location.
is a type conversion. That should give me the string "65". That is, with casts we are still looking at the same memory location. We are just interpreting the data there differently. With conversions we are producing new data that is derived from the old data, but it is not the same as the old data. |
||
|
|
|
|
I would say the difference between the 2 is this: type casting is what the compiler lets you do with only C++ keywords:
while type conversion is only possible with library functions:
Type casting can change the internal make up of the value, so in a way it's a (destructive) conversion too, but the word casting implies compiler support, whereas library calls like |
||
|
|
|
|
One of the major differences occurs when you work with strings. You cannot say (int)"234" and get the integer 234. Type casting generally only works on primitive numeric data types. |
||
|
|
