本文介绍了我应该何时使用readonly /省略属性上的set accessor / private accessor的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Hello

我应该何时使用readonly属性/省略属性上的set accessor / private accessor

When should I use readonly property / omit the set accessor / private accessor on a property

请解释

问候

Manoj

推荐答案

当类的实例本身可能更改属性的值时,省略set访问器,但其他类不能更改它(尽管其他类可以读取它)。

Omit the set accessor when the instance of the class might itself change the value of the property, but other classes can not change it (although other classes can read it).

当班级外的任何人都无法改变或阅读财产时,请使用私人访问者。

Use the private accessor when nothing outside the class can change or read the property.


这篇关于我应该何时使用readonly /省略属性上的set accessor / private accessor的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-27 14:37