What are the benefits of explicit type cast in C++ ?
|
|
|||
|
|
|
Clarity in reading the code. There is not too much else of benefit, except for the cases where the compiler cannot infer the implicit cast at all, in which case you'd have to cast explicitly anyway. The recommended way to cast in c++ is through |
|||
|
|
|
often used on void* to recover a implicitly known type. Especially common on embedded OS's for callbacks. This is a case where when you register for an event and maybe pass your "this" pointer as a context void*, then when the triggers it will pass you the void * context and you covert it back to the type the "this" pointer was. |
|||
|
|
|
Sometimes explicit casting avoids certain undesirable cirumstances by using explicit keyword.
Change as
Now compile.
We get this error in VS2005. error C2440: 'initializing' : cannot convert from 'char' to 'ExplicitExample' Constructor for class 'ExplicitExample' is declared 'explicit' To overcome this error, we have to declare as
It means as a programmer, we tell the compiler we know what we are calling. So compiler ignores this error. |
|||
|
|
|
Notice that all typecasts are explicit in C++ and C. There are, in the language, no "implicit" typecasts. It's called "implicit conversions" and "explicit conversions", the latter of which are also called "casts". Typecasts are most often used to inhibit warnings by the compiler. For instance if you have a signed and an unsigned value and compare them, the compiler usually warns you. If you know the comparison is correct, you can cast the operands to a signed type. Another example is overload resolution, where type casts can be used to drive to the function to be called. For example to print out the address of a Often implicit conversions are superior to casts. Boost provides
This has the benefit that it's only allowing conversions that are safe to do. Downcasts are not permitted, for example. |
||||
|
|