#ifndef _CAR_H_
#define _CAR_H_
class car{ //声明一个叫car的类
public: //公有函数
void run()
{
cout << "car run!" << endl;
}
void stop()
{
cout << "car stop!" << endl;
}
void setPorperty(int price, int carNum)
{
int m_price = price;
int m_carNum = carNum;
}
private: //私有函数
int m_price, m_carNum;
};
#enddif
头文件标准格式
最新推荐文章于 2025-10-28 17:42:32 发布
3657

被折叠的 条评论
为什么被折叠?



