?? car.h
字號:
#ifndef CAR_H
#define CAR_H
#include<iostream>
#include<string>
using namespace std;
class Car;
ostream &operator<<(ostream &stream,Car &car);
class Car
{
private:
string license;
int movedTimes;
public:
Car(string licenseNum):license(licenseNum),movedTimes(0){}
~Car(){}
string getLicense() const;
void movedTimesIncrease();
int getMovedTimes() const;
friend ostream &operator<<(ostream &stream,Car &car);
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -