⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 namespac.cpp

📁 数值计算工具库,C语言编写的,可以直接调用.
💻 CPP
字号:
// BZ_NAMESPACES

namespace computers {

class keyboard {
  public:
    int getkey() const;
};

int keyboard::getkey() const
{
    return 0;
}

}

namespace music {

class keyboard {
  public:
    void playNote(int note);
};

}

namespace music {

void keyboard::playNote(int note)
{
}

namespace foo {
  template<class T> void Xeg(T) { }
}

}

using namespace computers;

int main()
{
    keyboard x;
    int z = x.getkey();

    music::keyboard y;
    y.playNote(z);

    using namespace music::foo;
    Xeg(z);

    return 0;
}

⌨️ 快捷键说明

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