摘要: namespace // unnamed namespace { int ice; int bandicoot; } 该名称空间中声明的名称的潜在作用域为:从名称空间声明点到该声明区域末尾。(就好像后面紧跟着using编译指令) 注意: 不能在未命名名称空间所属文件之外的其它文件中使用该名称空间中的 阅读全文
posted @ 2020-05-29 19:45 孱陵 阅读(578) 评论(0) 推荐(0) 编辑
摘要: namespace my_very_favorite_things {...} namespace mvft = my_very_favorite_things; // mvft是my_very_favorite_things的别名 namespace MEF = myth::elements::f 阅读全文
posted @ 2020-05-29 15:22 孱陵 阅读(1364) 评论(0) 推荐(2) 编辑
摘要: namespace myth { using Jill::fetch; // using声明 using namespace elements; // using编译指令 using std::cout; // using声明 using std::cin; // using声明 ... } 名字空 阅读全文
posted @ 2020-05-29 15:09 孱陵 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 声明时嵌套: namespace elements { namespace fire { int flame; ... } float water; } 使用内部名称空间: using namespace elements::fire; // 依此类推(第n层) 阅读全文
posted @ 2020-05-29 14:17 孱陵 阅读(610) 评论(0) 推荐(0) 编辑