作用域重叠

最新文章:Virson's Blog

#include <iostream>

using namespace std;

int num = 10;

int main(int argc , char * argv[])
{
int num = 20;
cout<<"局部变量:"<<num<<endl;
cout<<"全局变量:"<<::num<<endl;
return 0;
}

posted @ 2011-10-30 20:34  学海无涯1999  阅读(193)  评论(0编辑  收藏  举报