C#基础知识汇总二(OOP):字段、属性

Class Members

Fields and methods inside classes are often referred to as “Class Members”:

Create a Car class with three class members: two fields and one method.

Fields

██ 这里其实很关键,注意叫 Filed ,会跟以后的 Properties 区分!!!

In the previous chapter, you learned that variables inside a class are called fields, and that you can access them by creating an object of the class, and by using the dot syntax (.)

Constructors

A constructor is a special method that is used to initialize objects. The advantage of a constructor, is that it is called when an object of a class is created. It can be used to set initial values for fields.

类的 构造函数 是类的一个特殊的成员函数,当创建类的新对象时执行
构造函数的名称与类的名称完全相同,它没有任何返回类型。

Note that the constructor name must match the class name, and it cannot have a return type (like void or int).

Also note that the constructor is called when the object is created.

All classes have constructors by default: if you do not create a class constructor yourself, C# creates one for you. However, then you are not able to set initial values for fields.

Constructors save time! Take a look at the last example on this page to really understand why.

默认的构造函数没有任何参数。

Access Modifiers 访问修饰符

By now, you are quite familiar with the public keyword that appears in many of our examples:

The public keyword is an access modifier, which is used to set the access level/visibility for classes, fields, methods and properties.

C# has the following access modifiers:

ModifierDescription
publicThe code is accessible for all classes
privateThe code is only accessible within the same class
protectedThe code is accessible within the same class, or in a class that is inherited from that class. You will learn more about inheritance in a later chapter
internalThe code is only accessible within its own assembly, but not from another assembly. You will learn more about this in a later chapter
C# 中访问修饰符

There’s also two combinations: protected internal and private protected.

C# Properties (Get and Set) ██ 重点!!!

Properties and Encapsulation

Before we start to explain properties, you should have a basic understanding of “Encapsulation“. (封装)

The meaning of Encapsulation, is to make sure that “sensitive” data is hidden from users. To achieve this, you must:

  • declare fields/variables as private
  • provide public get and set methods, through properties, to access and update the value of a private field

Properties

You learned from the previous chapter that private variables can only be accessed within the same class (an outside class has no access to it). However, sometimes we need to access them – and it can be done with properties.

A property is like a combination of a variable and a method一个属性,就像是一个“变量”和“方法”的组合 ===》这个解释很重要!!!), and it has two methods: a get and a set method:

关于“属性 properties”的理解:

如上图所示,Name 这个”属性 property”关联到了 name 这个”字段 filed”上面。
可以看到,原先定义的专门用来 get 和 set “字段 filed” 的 public 方法没有了!!而是用 “属性 property” 来 get 和 set “字段 filed”

The Name property is associated with the name field. It is a good practice to use the same name for both the property and the private field, but with an uppercase first letter【用相同的名字、但首字母大小写来区分 “属性 property”“字段 filed” 是一个好的方式!】.

The get method returns the value of the variable name.

The set method assigns a value to the name variable. The value keyword represents the value we assign to the property.

Now we can use the Name property to access and update the private field of the Person class:

Automatic Properties (Short Hand)

C# also provides a way to use short-hand / automatic properties, where you do not have to define the field for the property【你不用定义”属性field”了】, and you only have to write get; and set; inside the property.

The following example will produce the same result as the example above. The only difference is that there is less code:

Using automatic properties:

更简化的定义“属性”的方式:

Why Encapsulation?

  • Better control of class members (reduce the possibility of yourself (or others) to mess up the code)
  • Fields can be made read-only (if you only use the get method), or write-only (if you only use the set method)
  • Flexible: the programmer can change one part of the code without affecting other parts
  • Increased security of data

再说属性

C# 中的属性(Property)是类和结构体中用于封装数据的成员。它们提供了一种方式来定义类成员的访问和设置规则,通常用于隐藏字段(Fields)的内部实现细节,同时提供控制数据访问的机制

属性可以看作是对”字段的包装器”,通常由 get 和 set 访问器组成。

属性(Property)不会确定存储位置。相反,它们具有可读写或计算它们值的 访问器(accessors)

例如,有一个名为 Student 的类,带有 age、name 和 code 的私有域。我们不能在类的范围以外直接访问这些域,但是我们可以拥有访问这些私有域的属性。

以上代码中,Name 属性封装了私有字段 nameget 访问器用于获取字段值,而 set 访问器用于设置字段值。

自动实现的属性

如果你只需要一个简单的属性,C# 允许使用自动实现的属性,这样你不需要显式地定义字段!!! ██

在这种情况下,编译器会自动为 Name 属性生成一个私有的匿名字段来存储值!!!!

只读属性

如果你只需要一个只读属性,可以省略 set 访问器。

只写属性

类似地,如果你只需要一个只写属性,可以省略 get 访问器。

自定义逻辑

你可以在 get 和 set 访问器中包含自定义的逻辑。

计算属性

属性也可以是计算的,不依赖于字段。██

抽象属性(Abstract Properties)

抽象类可拥有抽象属性,这些属性应在派生类中被实现。下面的程序说明了这点:

当上面的代码被编译和执行时,它会产生下列结果:

码先生
Author: 码先生

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注