C/C++的标识符

来源:互联网 发布:批量图像对比软件 编辑:程序博客网 时间:2024/04/29 03:49

#include<iostream>

struct a{int b;};

 

class CTest{};

int main()
{
     a a;
     CTest CTest;

     return 0;
}

 

原创粉丝点击