How come this code
std::map <std::string , int> m;
m["a"]=1;
compiles with (I'm using MSVC 2010)
#include <string>
but not with
#include <string.h>
?
|
How come this code
compiles with (I'm using MSVC 2010)
but not with
? |
||||
|
|
|
|||||
|
|
|
|||
|
|
|||
|
|
|
They really have no relationship at all, outside of the fact that they both deal with strings. |
|||
|
|
|
Edit per Nicol Bolas comment below and a bit of googling:
Personally I only ever use |
|||||||||||
|
|
They are entirely different headers.
|
|||
|
|
|
I believe |
||||
|
|
|
As stated, |
|||
|
|