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

// by 鸟哥 qq1833183060   struct和函数同名
#include 
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.

你可能感兴趣的:(c++)