?? p270 默認參數的構造函數.cpp
字號:
#include<iostream>
using namespace std;
class Box
{
private:
float length;
float width;
float height;
public:
Box(float a=10,float b=10,float c=10);
void set_value();
void cubage();
};
void Box::set_value()
{
cout<<"please input the length width and height: ";
cin>>length>>width>>height;
}
void Box::cubage()
{
float cube;
cube=length*width*height;
cout<<"the cubage of the cube is "<<cube<<endl;
}
Box::Box(float a,float b,float c):length(a),width(b),height(c){}
int main()
{
Box cube1(12);//,
// cube1.set_value();
cube1.cubage();
// cube2.set_value();
Box cube2(10,14);
cube2.cubage();
Box cube3(10,14,15);
cube3.cubage();
system("pause");
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -