I'm learning C++ from scratch, and as such I don't have an expert understanding of C. In C++, you can't cast a void pointer to whatever, and I understand the reasons behind that. However, I know that in C, you can. What are the possible reasons for this? It just seems like it's be a huge hole in type safety, which (to me) seems like a bad thing.
|
You can cast a It's very convenient in C to not have to be explicit about it. In C++ we have templates, so to write generic code there's no need for So it's pretty much like you said. In C type safety in general didn't receive as much emphasis as it did in C++, especially when it came to |
||||
|
|
It's the only possible way to support polymorphism, aka generic programming. There's no other way to make, e.g., a generic hash table. Polymorphism in C is wildly unsafe, but it's the only polymorphism there is. Be glad that C++ has parametric polymorphism (one of the many functions of templates). |
|||
|
|
|
One reason: if you use |
|||
|
|
