?? thing-demo.cpp
字號:
#include <iostream>#include "thing.h"void display(Thing t, int n) { int i; for (i = 0; i < n; ++i) t.show();}int main() { using namespace std; Thing t1, t2; t1.set(23, 'H'); t2.set(1234, 'w'); t1.increment();// cout << t1.m_Number; display(t1, 3);// cout << i << endl; t2.show(); return 0;}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -