首页 > 开发 > 综合 > 正文

c#重点知识详解(三)(转)

2024-07-21 02:24:46
字体:
来源:转载
供稿:网友


第三章: 类属性
使用过rad开发工具的一定inspector很熟悉,程序员通过它可以操作对象的属性,delphi中引入了publish关键字来公布对象属性受到程序员的普遍欢迎.通过存取标志来访问private成员,在c#中有两种途径揭示类的命名属性——通过域成员或者通过属性。前者是作为具有公共访问性的成员变量而被实现的;后者并不直接回应存储位置,只是通过存取标志(accessors)被访问。当你想读出或写入属性的值时,存取标志限定了被实现的语句。用于读出属性的值的存取标志记为关键字get,而要修改属性的值的读写符标志记为set。

类属性

只能读 get
只能写 set
可读可写 set/get


请看例子:

using system;

public class test
{
private int m_nwrite;
private int readonly m_nread=100;
private int m_nwriteread;

public int writeread
{
get {return m_nwriteread;}
set {m_nwriteread=value;}
}

public int write
{
set { m_nwrite = value; }
}

public int read
{
get {return m_nread;}
}

}


class testapp
{
public static void main()
{
test mytest = new test();
int i=mytest.read; //get
mytest.write=250; //set
mytest.writeread+=10000000 ; //set and get

console.writeline("get:{0} set:{1} set/get:{2} ",i,mytest.write,mytest.writeread);
}
}

如果你想要隐藏类内部存储结构的细节时,就应该采用存取标志。存取标志给值参数中的属性传递新值。同时你可以获得实现在set标志中增加有效代码的机会。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表