运行时发生错误 说是找到一个或多个多种定义的符号
namespace A
{
int x = 10;
void fun()
{
cout << "A" <<endl;
}
}
namespace B
{
int x = 20;
void fun()
{
cout << "B" << endl;
}
}
int main(void)
{
cout << A::x << endl;
B::fun();
system("pause");
return 0;
}
namespace A
{
int x = 10;
void fun()
{
cout << "A" <<endl;
}
}
namespace B
{
int x = 20;
void fun()
{
cout << "B" << endl;
}
}
int main(void)
{
cout << A::x << endl;
B::fun();
system("pause");
return 0;
}
2017-04-30
举报