标签:iostream name png main div ima stream ret http
示例:
1 /*查看变量类型*/ 2 #include<iostream> 3 #include<string> 4 using namespace std; 5 int main() { 6 char c; 7 int intr; 8 string str; 9 cout << typeid(c).name() << endl; 10 cout << typeid(intr).name() << endl; 11 cout << typeid(str).name() << endl; 12 system("pause"); 13 return 0; 14 }
结果:
标签:iostream name png main div ima stream ret http
原文地址:https://www.cnblogs.com/ChaseMeng/p/12932564.html