📄 main.cpp
字号:
#include <iostream>
#include <stdlib.h>
using namespace std;
class QuickAndDirty {
public:
void ThisIsInline() {
cout << "Inline, baby!" << endl;
}
void ThisWillBe();
};
inline void QuickAndDirty::ThisWillBe() {
cout << "Now this is too!" << endl;
}
int main(int argc, char *argv[])
{
QuickAndDirty inst;
inst.ThisIsInline();
inst.ThisWillBe();
system("PAUSE");
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -