TAILIEUCHUNG - Understanding the Property Restrictions

Sở hữu sự hiểu biết hạn chế Properties nhìn, hành động, và cảm thấy như các lĩnh vực. Tuy nhiên, họ không thật sự lĩnh vực, và một số hạn chế áp dụng đối với họ | Understanding the Property Restrictions Properties look act and feel like fields. However they are not true fields and certain restrictions apply to them You can t initialize a property of a struct or class by using a set accessor. The code in the following example is illegal as the location variable has not been initialized by using new ScreenPosition location 40 compile-time error location not assigned NOTE This may seem trivial but if X was a field rather than a property the code would be legal. What this really means is that there are some differences between fields and properties. You should define structs and classes by using properties from the start rather than by using fields that you later migrate to properties code that uses your classes and structs might no longer work if you change fields into properties. You can t use a property as a ref or out argument whereas you can use a writeable field as a ref or out argument . For example MyMethod ref compile-time error A property can contain at most one get accessor and one set accessor. A property cannot contain other methods fields or properties. The get and set accessors cannot take any parameters. The data being assigned is passed to the set accessor automatically by using the value variable. You can t declare const or readonly properties. For example const int X get . set . compile-time error NOTE To make a property read-only simply omit the set accessor. Using Properties Appropriately Properties are a powerful feature with a clean field-like syntax. Used in the correct manner properties help to make code easier to understand and maintain. However they are no substitute for careful object-oriented design that focuses on the behavior of objects rather than their properties. Accessing private fields through regular methods or through properties does not by itself make your code well-designed. For example a bank account holds a balance. You might therefore be tempted to create a Balance

Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.