No_goddess 2016-09-25 12:15 采纳率: 33.3%
浏览 933

c++类中如何对函数进行获取和更改

类中
set函数

get函数
的结合如何使数据进行查看和更改,请大致写出思路,谢谢帮助
#include
using namespace std;
class Box
{
public:

Box(float = 1, float = 1, float = 1);

virtual ~Box();

void Show();

private:
float length, width, height;
};

#include "Box.h"
using namespace std;

/*
Box::Box()
{
length = 1; width = 1; height = 1;
cout << "Box("<<length<<","<<width<<","<<height<<")";
cout << "is constructed!" << endl;
}

*/

Box::Box(float L,float W,float H)
{
length = L; width = W; height = H;
cout << "Box(" << length << "," << width << "," << height << ")";
cout << "is constructed!" << endl;
}

void Box::Show()
{
cout << "length:" << length << endl;
cout << "width:" << width << endl;
cout << "height:" << height << endl;
cout <<"tiji" << length*width*height << endl;
cout << "mianji" << (2*((length*width)+(width*height)+(length*height))) << endl;
}

Box::~Box()
{
cout << "Box(" << length << "," << width << "," << height << ")";
cout << "is constructed!" << endl;
}

#include
#include "Box.h"
using namespace std;

int main()
{
Box box1;
box1.Show();
box1.~Box();

Box box2(4,2,3);
box2.Show();


system("pause");

}

  • 写回答

3条回答

  • leewers 2016-09-25 13:55
    关注
    float Box::getLength(){
        return length;
    }
    
    float Box::getHeight(){
        return height;
    }
    
    float Box::getWidth(){
        return width;
    }
    
    void Box::setLength(float length){
        this->length = length;;
    }
    
    void Box::setHeight(float height){
        this->length = height;
    }
    
    void Box::setWidth(float width){
        this->length = width;
    }
    
    void Box::set(float length = 1, float width = 1, float height = 1){
        this->length = length;
        this->width = width;
        this->height = height;
    }
    
    
    
    评论

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘