vote up 6 vote down star

After reading here a lot of answers about C-style casting in C++ I still have one little question. Can I use C-style casting for built-in types like long x=(long)y; or it's still considered bad and dangerous?

flag

7 Answers

vote up 8 vote down check

I would not, for the following reasons:

  • Casts are ugly and should be ugly and stand out in your code, and be findable using grep and similar tools.
  • "Always use C++ casts" is a simple rule that is much more likely to be remembered and followed than, "Use C++ casts on user-defined types, but it's OK to use C-style casts on built-in types."
  • C++ style casts provide more information to other developers about why the cast is neccesary.
  • C-style casts may let you do conversions you didn't intend -- if you have an interface that takes in (int*) and you were using c-style casts to pass it a const int*, and the interface changes to take in a long*, your code using c-style casts will continue to work, even if it's not what you wanted.
link|flag
vote up 20 vote down

Can I use C-style casting for built-in types like long x=(long)y; or it's still considered bad and dangerous?

Don't use them, ever. The reasons against using them applies here as well. Basically, once you use them, all bets are off because the compiler won't help you any more. While this is more dangerous for pointers than for other types, it's potentially still dangerous and gives poor compiler diagnostics in the case of errors, whereas new style casts offer richer error messages since their usage is more constrained: Meyers cites the example of casting away constness: using any cast other than const_cast won't compile, thus making it clear what happens here.

Also, some other disadvantages apply regardless of the types, namely syntactic considerations: A C-style cast is very unobtrusive. This isn't good: C++ casts stand out clearly in the code and point to potentially dangerous code. They can also easily be searched for in IDEs and text editors. Try searching for a C-style cast in a large code and you'll see how hard this is.

On the other hand, C-style casts offer no advantages over C++ casts so there's not even a trade-off to consider.

More generally, Scott Meyers advises to “Minimize casts” in Effective C++ (item 27), because “casts subvert the type system.”

link|flag
True about minimizing casts. But seriously can you point out any reason not to do float y = 1.0; double x = double(y)? Because that wsa the question. This cast is not dangerous and probably should not distract compared to the real dangerous ones (which you almost never need if you do it right).. – ypnos Feb 13 at 23:27
Well, in that very specific case, the cast is not even needed as double is a larger type than float. – RaphaelSP Apr 17 at 17:04
vote up 1 vote down

If you find you need to do a C-style cast (or a reinterpret_cast) then look very carefully at your code it is 99.99% certain there is something wrong with it. Both these casts leed almost inevitably to implementation specific (and very often undefined) behaviour.

link|flag
"If you lie to the compiler, it will punish you". These casts are either a lie, or an attempt to fix a previous lie. – Darron Feb 9 at 15:04
In research code I see often dealing with float and double side by side, or e.g. int data from an image getting casted to float/double for further processing. These are real use cases for a cast and I think they are more than 0.01%. – ypnos Feb 13 at 23:30
What about parameters to thread functions on Windows? You have to pass void*. Common pattern is to pass reinterpret_cast<void*>(this). – Dave Mooney Apr 17 at 16:50
vote up 1 vote down

I think it may be OK given the context. Example:

/* Convert -1..1 to -32768..32767 */
short float_to_short(float f)
{
    return (short)(max(-32768.f, min(32767.f, f * 32767.f)));
}
link|flag
vote up 0 vote down

Meyers told me not to do that. so I don't

link|flag
vote up 0 vote down

Why do you need that particular cast? Any numeric type can be converted to a long without a cast (at potential loss of precision), so casting doesn't let the compiler do anything it can't already. By casting, all you do is remove the compiler's ability to warn if there is a potential problem. If you're converting some other basic type (like a pointer), to a long, I'd really like to see a reinterpret_cast<> rather than a C-type cast, so I can find what's going on easily if there turns out to be a problem.

I'm not going to approve of casting without a reason, and I'm certainly not going to approve of C-type casts without a good reason. I don't see a reason to cast between most built-in types, and if there is one I want to be able to find it easily with a text search.

link|flag
If you don't want the compiler to generate loss-of-precision errors then casting is necessary – Michael Feb 10 at 11:39
Sure, but you may be better off suppressing them for now. When we went to 64-bit processing (needed more memory space), we would have lost precision in some cases (involving size_t) if we'd been casting. – David Thornley Feb 10 at 14:37
vote up 0 vote down

I can think of one legitimate use for a C-style cast:
// cast away return value to shut up pedandic compiler warnings
(void)printf("foo\n");

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.