A field is simply a memory location, whereas, a property is a collection of methods. A
property is represented by a value, in the same way as a field. Properties can be considered
as smart fields.
It is not compulsory to store the value of a property in a field, but this is the accepted
practice. The CLR supports the syntax of properties, but these properties do not exist at
runtime.

We have created a property called ff in the class aa. This property is written as a directive
called .property in the IL file, with the modifier instance, as it is a non-static property, and
with the return type int32.
There is an accessor called get, whose equivalent directive in IL is also called as .get. This
get is represented by the function get_ff, that simply returns a value with the data type of
the property.
In this case, the br instruction is superfluous(多余的). The local variable V_0 is used to store the
return value that is to be placed on the stack.
The statement int gg = a.ff + 9; gets executed in a unique way as follows:

• The this pointer is placed on the stack.
• Then, the expression a.ff get replaced by a call to a function get_ff from the class aa.
• Thereafter, the return value is placed on the stack.
• The number 9 is placed on the stack, followed by the add instruction.
• The property gets converted into a function beginning with get.
On executing the il assembler 'ilasm' on a.il, you will see the following output

A property with a set, obtains a function called set_ff, having a parameter called value. We
also have a directive called .set.
Ldarg.1 is used to place the first parameter of a function on the stack. The call to a
property a.ff = 19 gets converted into the function call. Thus, a property actually consists
of two functions, get and set. They get called, depending on whether we want to obtain the
value of a property or change it, respectively.

Error checks in IL are sparse(稀少的). We have a property called ff, which does not have either a
get or a set directive. The C# compiler screams at this omission, but the IL assembler turns
a blind eye to this.
Hopefully, the next version of IL should have more reasonable error checks. Having said
this, henceforth, we will not comment on the lack of error checks. It will be useful to

remember in the IL world, you are on your own. The excess freedom given by the IL
assembler also means that you have to assume greater responsibility as a programmer.

A indexer is a property. It has no equivalent directive in IL. An indexer is simply a property
with an extra parameter, and no other complications. When we initialize a[1]using the
statement a[1] = 17, we are actually placing three parameters on the stack:
• The this pointer
• The array index 1
• The value 17.

Then, we call set_Item, as it is an indexer and not a property. The two parameters to the
function are i and value. If you remember, the indexer variable has been named i.
The function get_Item gets called with the single parameter i and returns a value. The first
parameter to the WriteLine function is a string and the rest of the parameters are objects.
We need to convert our int value types into objects. Thus we need to box them.
• Using the function set_Item, we are displaying the index and the value.
• Using the function get_Item, we are displaying only the value.
• Using the last WriteLine function, we are displaying the value of a[1], which is 23.
Thus, indexers are an alias for a property with an extra parameter.
The properties directive is used only by compilers and other tools, to understand as to
what methods are being associated with the property. If you are not convinced, you can
delete the property directive from the above programs and run them. There will be no
change at all in the way they execute.

The above example demonstrates the use of virtual properties. The concept of a property is
simply an illusion. As mentioned earlier, properties are converted into a series of functions.
Thus what applies to virtual functions also applies to virtual properties. We cannot use the
modifier virtual in the properties directive.
The rationale behind using a property over a field is:
If the value of a field changes, no code gets called. The class is thus, unaware of the
change. In the case of a property, a method gets called. This method can contain a large
amount of code. This code can do anything.
Also, we can be very sure that the user does not change the value of the property beyond
certain acceptable limits. A method call can be optimised, and hence, a property does not
carry any significant overhead as compared to a direct access to a field. The only
disadvantage is that the properties cannot be made global.

A property normally has a field that stores the value associated with a property. Since the
property directive is used, for documentation purposes, it would not be a bad idea to have
a directive called backing, which can be used to state the name of this field. We are not
forced to do so. The assembler only checks to make sure that the filed is present. It is not
used in any way. It must have the same data type as the property. Using the attribute
specialname, we can inform(通知) the compiler to give it special treatment.

We finally have one last directive called .other, that specifies the other functions that are
associated with the property. In this case, the assembler does not check for the existence of
the function, and thus, we have not included it.
To summarise, the properties directive is implemented as a series of method calls. The
same is true for indexers also.

C# to il 9 Properties and Indexers(属性和索引器)的更多相关文章

  1. C#中方法,属性与索引器

    C#中方法,属性与索引器: TODO: 1,关于系统中常常出现的通过某一字段,查询相应实体信息(可能是一条字段或一条数据和一组泛型集合) 解说篇:1,方法,2,属性3.索引器 1.方法(1.依据状态编 ...

  2. (转)c# 属性与索引器

    属性是一种成员,它提供灵活的机制来读取.写入或计算私有字段的值. 属性可用作公共数据成员,但它们实际上是称为“访问器”的特殊方法. 这使得可以轻松访问数据,还有助于提高方法的安全性和灵活性. 一个简单 ...

  3. set,get方法(属性,索引器)

    很多时候我们不可以把一些字段暴露出来允许别人调用和修改,为了隐藏这些字段又便于加限制的使用,在面向对象编程中一般采用写get set函数的办法,比如: //字段_age, "_"表 ...

  4. C#属性-索引器-里氏替换-多态-虚方法-抽象-接口-泛型-

    1.属性 //属性的2种写法 public class person { private string _name; public string Name { get { return _name; ...

  5. 通过getResourceAsStream 获得Properties文件属性和属性值

    1.Class.getResourceAsStream(String path) path:不以‘/’开头默认是从此类所在的包下取资源:以'/'开头则是从ClassPath根目录下获取 2.Class ...

  6. SpringBoot @Value读取properties文件的属性

    SpringBoot在application.properties文件中,可以自定义属性. 在properties文件中如下示: #自定义属性 mail.fromMail.addr=lgr@163.c ...

  7. gradle-wrapper.properties中各属性的含义

    gradle-wrapper.properties中各属性的含义 1. gradle-wrapper.properties 每一个用gradle编译的工程,都会有一个gradle\wrapper目录. ...

  8. springboot成神之——application.properties所有可用属性

    application.properties所有可用属性 # =================================================================== # ...

  9. SpringBoot 获取properties配置文件的属性

    自定义properties文件获取属性 使用 @ConfigurationProperties((prefix = "demo")) 和 @PropertySource(" ...

随机推荐

  1. tf.nn.conv2d

    tf.nn.conv2d(input, filter, strides, padding, use_cudnn_on_gpu=None, name=None) input: 指需要做卷积的输入图像,它 ...

  2. ubuntu GUI程序开机自启设置

    在 主目录下,即 $HOME路径下新建 或编辑 .gnomerc 文件,将开机启动脚本写在这里如下:gedit ~/.gnomerc#!/bin/bashcd /home/xxxx/openUI./o ...

  3. CString、string、const char*的相互转换

    环境:vs2010 1.CString转string //第一种方式: CString str = _T("CSDN"); USES_CONVERSION; std::string ...

  4. windows文件映射

    0x01 使用文件映射实现共享内存. 用内存映射文件实现进程间的通讯:Windows中的内存映射文件的机制为我们高效地操作文件提供了一种途径,它允许我们在进程中保留一段内存区域,把硬盘或页文件上的目标 ...

  5. POJ - 1845 G - Sumdiv (唯一分解定理)

    Consider two natural numbers A and B. Let S be the sum of all natural divisors of A^B. Determine S m ...

  6. day 26面向对象 的封装 接口 抽象

    大纲分析 # 面向对象# 类 :一类具有相同属性和方法的事物 #类的定义:class #类中可以定义的方法种类: #普通方法 self 对象 #类方法 cls @classmethod 类/对象 #静 ...

  7. 爬虫系列1:python简易爬虫分析

    决定写一个小的爬虫系列,本文是第一篇,讲爬虫的基本原理和简易示例. 1.单个网页的简易爬虫 以下爬虫的主要功能是爬取百度贴吧中某一页面的所有图片.代码由主要有两个函数:其中getHtml()通过页面u ...

  8. Kaggle(2):验证和过分拟合

    目前看来,随机森林是比较常用且有效的分类算法.以下先简要介绍python中随机森林的使用方法,然后谈谈分类结果的准确度验证和过拟合等两个重要问题. 1.随机森林的参数 在Scikit learn中使用 ...

  9. Kafka的安装 -- 未完成

    1. 官网下载软件 2. linux服务器上, 安装上传和下载的工具 yum install -y lrzsz rz : 上传 sz + 文件名 : 下载 3.解压文件 pwd: 查看当前路径 解压到 ...

  10. prototype和_proto_

    __proto__(隐式原型)与prototype(显式原型) 显式原型 explicit prototype property:用来实现基于原型的继承与属性的共享. 每一个函数在创建之后都会拥有一个 ...