• 大小: 2.81KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 标签:

资源简介

C++实战源码-命名空间的使用(入门级实例219).zip

资源截图

代码片段和文件信息

// namespace.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
#include “ioStream.h“

namespace nsConst
{
const Top = 1;
const Bottom = 2;
const Left = 3;
const Right = 4;
}

namespace nsMemo
{
const char *Top = “上“;
const char *Bottom = “下“;
const char *Left = “左“;
const char *Right = “右“;
}

int main(int argc char* argv[])
{
int n;
cin >> n;
switch  (n)
{
case nsConst::Left:
cout << nsMemo::Left << endl;
break;
case nsConst::Top:
cout << nsMemo::Top << endl;
break;
case nsConst::Right:
cout << nsMemo::Right << endl;
break;
case nsConst::Bottom:
cout << nsMemo::Bottom << endl;
break;
}

return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         726  2010-10-14 16:56  namespace\namespace.cpp
     文件        4572  2010-10-14 16:40  namespace\namespace.dsp
     文件         543  2010-10-14 16:40  namespace\namespace.dsw
     文件         296  2010-10-14 16:40  namespace\StdAfx.cpp
     文件         769  2010-10-14 16:40  namespace\StdAfx.h

评论

共有 条评论