I'm a newbie in c++11 and I'm aware of typeid().name()
and nullptr
. I was just having some fun with a code but i found out that sizeof(nullptr)
is 4
and moreover typeid(str).name()
is something complex set of characters NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
#include<iostream>
#include<string>
#include<typeinfo>
int main(){
std::string str;
std::cout<<sizeof(nullptr)<<std::endl;
std::cout<<typeid(str).name();
return 0;
}
I'm a bit confused about the output. Can someone kindly explain me ??
Both of these things are implementation defined.
I would assume that on that platform all pointers are size 4, and
nullptr
's size was chosen to match that.std::string
is an alias for an instantiation of a template,std::basic_string<char, std::char_traits<char>>
. The name is further mangled to conform to your platform's format for executables. There may be a tool to "demangle" names provided by the platform.