以下是引用aipb2007在2007-5-16 17:59:19的发言:
一般都要用<iostream>
的,就不加<cstdlib>了
哦,现在才知道,iostream里到底有多少东西,现在还不知道
以前用iostream.h,什么都没有,就只有标准输入输出
雁无留踪之意,水无取影之心
#include <iostream>
#define using using namespace
namespace ns1{
void fun()
{
using std;
cout<<\"hello\"<<endl;
}
};
namespace ns2{
void fun()
{
using std;
cout<<\"world\"<<endl;
}
};
void foo(int k)
{
if(k==1){
using ns1;
fun();
}
else {
using ns2;
fun();
}
}
int main()
{
foo(1);
foo(2);
}
[此贴子已经被作者于2007-5-17 0:31:41编辑过]