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
rather than:
Why would this be the case? |
||||
| show 2 more comments |
|
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. |
|||||||||||||||||||||
|
|
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. |
|||||||||
|
|
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++. |
|||||||||||||||||||||
|
|
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. |
|||||||
|
|
In C you get an implicit conversion from |
|||||||
|
|
You do cast, because:
|
|||||||||||
|
|
It is not mandatory to cast the results of malloc, since it returns void* , and a void* can be pointed to any datatype. |
|||
|
|
|
the returned type is void*, which can be cast to the desired type of data pointer in order to be dereferenceable. |
|||
|
|
|
Casting the value returned by In the ancient days, that is, before |
|||
|
|
|
I think this is the wrong advice given to you, because our way of writing too matters while we design a software. Best way to write is:
|
|||||||
|
sievechanges from int to, say, float.malloc( sizeof *sieve * length );will work regardless of the type, while a cast needs maintenance, adds nothing, and may create tough to track bugs. – MestreLion Oct 10 '12 at 4:35