edit test.cpp

This commit is contained in:
2021-03-10 13:03:09 +09:00
parent f2b9005d64
commit f74469a01c

View File

@ -89,6 +89,7 @@ int main(int ArgiCnt, char** AppArgu)
cout<<"# HereInt2 int* ="<< typeid(myi2).name()<<endl;
cout<<"# HereInt3 int& ="<< typeid(myi3).name()<<endl;
#ifdef __WIN
cout<<"# HereInt1 hash="<< typeid(myi1).hash_code()<<endl;
cout<<"# HereInt2 hash="<< typeid(myi2).hash_code()<<endl;
cout<<"# HereInt3 hash="<< typeid(myi3).hash_code()<<endl;
@ -96,6 +97,7 @@ int main(int ArgiCnt, char** AppArgu)
cout<<"# HereInt1 raw ="<< typeid(myi1).raw_name()<<endl;
cout<<"# HereInt2 raw ="<< typeid(myi2).raw_name()<<endl;
cout<<"# HereInt3 raw ="<< typeid(myi3).raw_name()<<endl;
#endif
cout<<"# HereInt1 ="<< myi1<<endl;
cout<<"# HereInt2 int* ="<<*myi2<<endl;