namespace2.cc.svn-base

来自「QT方面的开发」· SVN-BASE 代码 · 共 18 行

SVN-BASE
18
字号
#include "a.h"#include "b.h"int main() {    using A::f; /* declaration - brings A::f() into scope */    f();    using namespace B; /* directive - brings all of    B into scope */    g();  /* okay */    f();  /* ambiguous */}/*OUTf from Ag from Bf from A*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?