In this question, someone suggested in a comment that I should not cast the results of malloc. I.e.
int *sieve = malloc(sizeof(int)*length);
rather than
int *sieve = (int *)malloc(sizeof(int)*length);
Why would this be the case?
|
In this question, someone suggested in a comment that I should not cast the results of malloc. I.e.
rather than
Why would this be the case?
| |||||||||||||||||
feedback
|
|
You don't cast the result, since:
As a clarification, note that I said "you don't cast", not "you don't need to cast". In my opinion, it's a failure to include the cast, even if you got it right. There are simply no benefits to doing it, but a bunch of potential risks, and including the cast indicates that you don't know about the risks. Also note, as commentators point out, that the above changes for straight C, not C++. I very firmly believe in C and C++ as separate languages. | |||||||||||||||||||||
feedback
|
|
In C, you don't need to cast the return value of
which additionally frees you from having to worry about changing the right-hand side of the expression if ever you change the type of Casts are bad, as people have pointed out. Specially pointer casts. | |||||||
feedback
|
|
In C you can implicitly convert a void pointer to any other kind of pointer, so a cast is not necessary. Using one may suggest to the casual observer that there is some reason why one is needed, which may be misleading. | |||||
feedback
|
|
As other stated, it is not needed for C, but for C++. If you think you are going to compile your C code with a C++ compiler, for which reasons ever, you can use a macro instead, like:
That way you can still write it in a very compact way:
and it will compile for C and C++. | |||||||||||||||||||||
feedback
|
|
In C you get an implicit conversion from | |||||||
feedback
|
|
I like this explanation because it's throughout, talking about possible goodness and bad consequences: Casting. | |||||
feedback
|
|
It's optional. Typically you do the cast to avoid compiler warnings. Marco | |||||||||||||
feedback
|