设计一个汽车类(C++)
2个回答
展开全部
class CCar。
int nWheelNum。
std:string strBrands。
float fPrice。
public:CCar()
注意事项:
(1)普通货车:按其载重量分为轻型(小于3.5t)、中型(大于4-8t)和重型(大于8t)货车。
(2)特种车:为普通货车的变型,具有特殊货箱,并考虑到货物装载和运输上的专门需求。如有保温箱货车、罐式货车等。
(3)自卸车:货箱能自动举升并倾卸散装货物、固体货物,如煤、砂石、矿料等。
(4)牵引车:专门用来牵引挂车、半挂车和长货挂车的主体,一般车上不搭乘旅客,没有装载货物的车厢(少数具有短货箱)的汽车称为牵引车。又称载货列车,一般可分为全挂牵引车和半挂牵引车,半挂车的载荷由自身和牵引车共同承受,全挂车的载荷全部由自身承受。
展开全部
class CCar
{
int nWheelNum;
std::string strBrands;
float fPrice;
public:
CCar()
{
nWheelNum = 4;
}
~CCar()
{}
int GetWheelNum() const
{
return nWheelNum;
}
std::string GetBrands() const
{
return strBrands;
}
float GetPrice() const
{
return fPrice;
}
void SetWheelNum(int n)
{
nWheelNum = n;
}
void SetBrands(const std::string &str)
{
strBrands = str;
}
void SetPrice(float f)
{
fPrice = f;
}
void Print();
};
inline void CCar::Print()
{
std::cout << “车轮数:” << nWheelNum << “\n” << “品牌:” << strBrands << “\n” << “价格:” << fPrice << endl;
}
{
int nWheelNum;
std::string strBrands;
float fPrice;
public:
CCar()
{
nWheelNum = 4;
}
~CCar()
{}
int GetWheelNum() const
{
return nWheelNum;
}
std::string GetBrands() const
{
return strBrands;
}
float GetPrice() const
{
return fPrice;
}
void SetWheelNum(int n)
{
nWheelNum = n;
}
void SetBrands(const std::string &str)
{
strBrands = str;
}
void SetPrice(float f)
{
fPrice = f;
}
void Print();
};
inline void CCar::Print()
{
std::cout << “车轮数:” << nWheelNum << “\n” << “品牌:” << strBrands << “\n” << “价格:” << fPrice << endl;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询