to_string C++ typeid().name()看对象类型


#include
#include 
#include 
using namespace std;
int main() {
	int a = 10;
	string s=to_string(a);
	string s1 = "12ppp";
	cout << s1 + s << endl;
	cout << typeid(a).name() << endl;
	cout << typeid(s).name() << endl;
	system("pause");
	return 0;
}