When I want to use size_t in C++, should I include <stddef.h> or <cstddef>? I have heard several people saying that <cstddef> was a bad idea, and it should be deprecated. Why is that?
|
|
|||
|
|
|
I prefer Some of the names in the C headers are allowed to be macros, but the set differs from the C rules. In C, Secondly, only a couple standard C headers are required to have the Thirdly, when using headers from a third-party C library, you will end up with Fourthly, the current draft for the new C++ standard says that |
|||||||||||||||||
|
|
Edit: Technically, the C header too may contain the names in the std namespace. But the C-headers (those that end with .h) introduce the names also to the global namespace (thus polluting it) via using-declarations. |
|||||||||||||||||||||
|
|
A lot of features that aren't deprecated will almost certain disappear first -- At the same time, a fair number of compilers (especially older ones) don't implement the Ultimately, I think the Edit: Even that useless capability worked with few enough real compilers that the current drafts of the up-combing C++0x give permission for the |
|||||||
|
|
Both are in the standard and, AFAIK, there to stay. The form cXXX always introduces the names in the std namespaces, the form XXX.h always introduces the names in the global namespace. Both may also put the names in the other namespace (at least in C++0X, it wasn't the case previously. As respecting that constraint make it impossible to build a C++ library from a C library you don't control, the constraint was removed. g++ suffers of that problem at least on the non glibc targets). For traditional Unix headers, in all implementation I've tested the form XXX.h includes the additional Unix identifier if you have the needed feature macros defined before. The behavior for the form cXXX was inconsistent between implementations. So in practice I use the XXX.h as I often need those declarations. |
|||||||||||||
|
|
|
|||||||||||
|