gpt4 book ai didi

c++ - 如果构造函数和析构函数可以获取和显示(打印)数据,为什么我们需要 getter 和 setter?

转载 作者:太空宇宙 更新时间:2023-11-04 12:58:00 27 4
gpt4 key购买 nike

<分区>

看下面的代码,我很困惑为什么我们需要 getter 和 setter?

 #include<iostream>
#include<cstring>
using namespace std;
class car
{
char name[30];
int price;
public:
void get_data(char* n,int p)
{
strcpy(name,n);
price=p;

}
void set_data()
{
cout<<"Name: "<<name<<endl;
cout<<"Price:"<<price<<endl;
}
///Lets add the idea of constructor
car()
{
cout<<"constructor has been called"<<endl;
}
car(char *n, int p)
{
cout<<"2nd constructor has been called"<<endl;
strcpy(name,n);
price=p;
}
~car()
{
cout<<"Name: "<<name<<endl;
cout<<"Price:"<<price<<endl;
}

};
int main()
{
car A("BMW",1000);

car B("Audi",2000);


}

我想问的是,如果构造函数可以设置值并打印值,为什么还需要getter和setter?为什么会有 getter 和 setter 的想法?

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com