首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ >

typedef int* INT 与 typedef int *INT 区别解决办法

2012-02-22 
typedef int* INT 与 typedef int *INT 区别typedef int* INT 与 typedef int *INT 区别[解决办法]C/C++ c

typedef int* INT 与 typedef int *INT 区别
typedef int* INT 与 typedef int *INT 区别

[解决办法]

C/C++ code
#include <iostream> using namespace std; typedef int *INT1;typedef int* INT2;int main() {    cout<<typeid(INT1).name()<<endl;    cout<<typeid(INT2).name()<<endl;    return 0;}
[解决办法]
没有区别!

热点排行