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;}
[解决办法]
没有区别!