码迷,mamicode.com
首页 > 其他好文 > 详细

查看变量类型

时间:2020-05-21 19:37:49      阅读:46      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!