📄 namespac.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 + -