visual studio 中怎么为C++类成员变量添加setter/getter函数
3个回答
展开全部
直接加就行。比如
class Rect{
private: int height; int width;
public: int getHeight(){return height;}
void setHeight(int h){ height=h;}
int getWidth(){return width;}
void setWidth(int w){ width=w;}
};
class Rect{
private: int height; int width;
public: int getHeight(){return height;}
void setHeight(int h){ height=h;}
int getWidth(){return width;}
void setWidth(int w){ width=w;}
};
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <iostream>
using namespace std;
ref class MyClass {
int _val;
public:
property int val {
int get()
{
cout << "retrive value from val" << endl;
return _val;
}
void set(int v)
{
cout << "set the value of val to " << v << endl;
_val = v;
}
};
};
int main()
{
MyClass^ mc = gcnew MyClass;
mc->val = 5;
int x = mc->val;
cout << x << endl;
return 0;
}
比如这样?
编译的时候要开clr支持
using namespace std;
ref class MyClass {
int _val;
public:
property int val {
int get()
{
cout << "retrive value from val" << endl;
return _val;
}
void set(int v)
{
cout << "set the value of val to " << v << endl;
_val = v;
}
};
};
int main()
{
MyClass^ mc = gcnew MyClass;
mc->val = 5;
int x = mc->val;
cout << x << endl;
return 0;
}
比如这样?
编译的时候要开clr支持
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
C++没有 setter/getter 这种东西
追问
不是,就是添加set/get函数
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询