初探c#(十三)属性(Properties)
来源:网络收集 责任编辑:栏目编辑 发表时间:2013-07-02 05:57 点击:次
1.14 属性(Properties)
关于属性就不用多说了。可能有点特别的是如何得到一个属性和设置一个属性。请诸位看下例:*/
public class Button: Control
{
private string caption;
public string Caption {
get {
return caption;
}
set {
caption = value;
Repaint();
}
}
}
/*
有了上面的定义,我们就可以对Button进行读取和设置它的Caption属性:*/
Button b = new Button();
b.Caption = "ABC"; // 设置
string s = b.Caption; // 读取
b.Caption += "DEF”; // 读取 & 设置
关于属性就不用多说了。可能有点特别的是如何得到一个属性和设置一个属性。请诸位看下例:*/
public class Button: Control
{
private string caption;
public string Caption {
get {
return caption;
}
set {
caption = value;
Repaint();
}
}
}
/*
有了上面的定义,我们就可以对Button进行读取和设置它的Caption属性:*/
Button b = new Button();
b.Caption = "ABC"; // 设置
string s = b.Caption; // 读取
b.Caption += "DEF”; // 读取 & 设置
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>