C#中可以很容易的为类添加属性,比如
//cs code
class Person
{
private string myName ="N/A";
public string Name
{
get
{
return myName;
}
set
{
myName = value;
}
}
}
可是C++.net如果去添加,介绍的文章似乎不多,刚刚用到了,记录一下,主要是使用微软添加的新关键字
property
//c++ code
class Person
{
public:
property String^ Name
{
String^ get(void) {
return myName;
};
void set(String^ value) {
myName = value;
};
}
private:
String^ myName ="N/A";
}
https://blog.sciencenet.cn/blog-483379-636371.html
上一篇:
VC++ .net 中使用 dao下一篇:
用freeSSHd架设ssh服务器,但是不支持scp