官术网_书友最值得收藏!

Accessing private fields

In Dart, as discussed when we covered packages, the privacy is at the library level, but it is still possible to have private fields in a class even though Dart does not have the keywords public, protected, and private. A simple return of a private field's value can be performed with a one-line function:

String getFirstName() => _name;

To retrieve this value, a function call is required, for example, Person.getFirstName(); however, it may be preferable to have a property syntax such as Person.firstName. Having private fields and retaining the property syntax in this manner is possible using the get and set keywords.

Using true getters and setters

The syntax of Dart also supports get and set via keywords:

int get score  => score + bonus; 
set score(int increase)  => score += increase * level; 

Using either get/set or simple fields is down to preference. It is perfectly possible to start with simple fields and scale up to getters and setters if more validation or processing is required.

The advantage of the get and set keywords in a library is that the intended interface for consumers of the package is very clear. Further, it clarifies which methods may change the state of the object and which merely report current values.

主站蜘蛛池模板: 朝阳区| 洪泽县| 临城县| 太康县| 霍邱县| 乐清市| 万安县| 遵义县| 宝应县| 南投市| 德庆县| 乌海市| 黔东| 巴南区| 巴林右旗| 临朐县| 辽阳市| 靖西县| 共和县| 兰西县| 乐亭县| 商丘市| 名山县| 南丹县| 香港 | 怀化市| 乐东| 望城县| 泽库县| 拉孜县| 斗六市| 融水| 宁武县| 莆田市| 衡南县| 武冈市| 都兰县| 巨鹿县| 峨眉山市| 沿河| 白玉县|