我有一个类ExProperty
,如下所示:
class ExProperty
{
private int m_asimplevar;
private readonly int _s=2;
public ExProperty(int iTemp)
{
m_asimplevar = iTemp;
}
public void Asimplemethod()
{
System.Console.WriteLine(m_asimplevar);
}
public int Property
{
get {return m_asimplevar ;}
//since there is no set, this property is just made readonly.
}
}
class Program
{
static void Main(string[] args)
{
var ap = new ExProperty(2);
Console.WriteLine(ap.Property);
}
}
以只读或只写方式制作/使用属性的唯一目的是什么?我看到,通过以下程序,readonly
达到了同样的目的!
当我将属性设为只读时,我认为它不应该是可写的。当我使用
public void Asimplemethod()
{
_s=3; //Compiler reports as "Read only field cannot be used as assignment"
System.Console.WriteLine(m_asimplevar);
}
是的,这没关系。
但是,如果我使用
public ExProperty(int iTemp)
{
_s = 3 ; //compiler reports no error. May be read-only does not apply to constructors functions ?
}
为什么编译器在这种情况下没有报告错误?
宣布_s=3
好吗?或者我应该声明_s
并使用构造函数分配其值吗?
答案 0 :(得分:4)
是的,readonly
关键字表示该字段只能在字段初始值设定项和构造函数中写入。
如果需要,可以将readonly
与属性方法结合使用。属性的private
支持字段可以声明为readonly
,而属性本身只有一个getter。然后,支持字段只能分配给构造函数(以及可能的字段初始化程序)。
您可以考虑的另一件事是制作 public
readonly
字段。由于字段本身是只读的,如果它只是返回字段值,你实际上并没有从setter中获得太多。
答案 1 :(得分:3)
属性的关键点是为类外提供接口。通过不定义Set
或将其设为私有,您可以将其设为"只读"对于类的外部,但它仍然可以从类方法内部进行更改。
通过制作字段readonly
,您说它永远不会改变,无论这种变化来自哪里。