c++中同一作用域中的struct和函数可以重名

生来就可爱ヽ(ⅴ<●) 提交于 2020-02-03 05:17:06
// by 鸟哥 qq1833183060   struct和函数同名
#include <iostream>
using std::cout;
struct a{
    int i=9;
};

void a(){
    cout<<"in a."<<std::endl;
}
int main()
{    
    struct a st;
    cout<<st.i<<std::endl;
    a();
}

//输出为  9
//       in a.

运行结果:

9
in a.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!