C++ namespace 语法
#include "stdafx.h"
#include<stdlib.h>
#include<iostream>
using namespace std;
namespace A
{
int x = 5;
void fun()
{
cout << "A" << endl;
}
}
namespace B
{
int x = 2;
void fun()
{
cout << "B" << endl;
}
}
int main(void)
{
cout << A::x << endl;
B::fun();
return 0;
}
最后的 B::fun();
难道不用加cout吗