Is there any reason to prefer static_cast<> over C style casting? Are they equivalent? Is their any sort of speed difference?
|
feedback
|
|
C++ style casts are checked by the compiler. C style casts aren't and can fail at runtime also, c++ style casts can be searched for easily, whereas it's really hard to search for c style casts Another big benefit is that the 4 different C++ style casts express the intent of the programmer more clearly. When writing C++ I'd pretty much always use the C++ ones over the the C style. | ||||
|
feedback
|
|
See A comparison of the C++ casting operators.
| |||
|
feedback
|
|
See the excellent answers provided for this: different types of casts in C++ | |||
|
feedback
|
|
Since there are many different kinds of casting each with different semantics, static_cast<> allows you to say "I'm doing a legal conversion from one type to another" like from int to double. A plain C-style cast can mean a lot of things. Are you up/down casting? Are you reinterpreting a pointer? | |||
|
feedback
|