?? c16_13.cpp
字號:
//測試vehicle.h中定義的類
#include <iostream.h>
#include "vehicle.h"
int main()
{
CShip ship;
ship.setFeature(1857,400,"MayFlower");
cout << ship;
ship.sail();
CAirPlane plane;
plane.setFeature(2000,150,"Boeing747");
cout << plane;
plane.fly();
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -