美文网首页
C# 特性详解

C# 特性详解

作者: 某人在 | 来源:发表于2019-06-29 06:46 被阅读0次

来源:https://www.cnblogs.com/liuxinxin/articles/2265672.html

 特性(attribute)是被指定给某一声明的一则附加的声明性信息。

 在C#中,有一个小的预定义特性集合。在学习如何建立我们自己的定制特性(custom attributes)之前,我们先来看看在我们的代码中如何使用预定义特性。

using System;

public class AnyClass

{

    [Obsolete("Don't use Old method, use New method", true)]

    static void Old( ) { } 

    static void New( ) { }

    public static void Main( )

    {

        Old( );

    }

}

    我们先来看一下上面这个例子,在这个例子中我们使用了Obsolete特性,它标记了一个不应该再被使用的程序实体。第一个参数是一个字符串,它解释了为什么该实体是过时的以及应该用什么实体来代替它。实际上,你可以在这里写任何文本。第二个参数告诉编译器应该把使用这个过时的程序实体当作一种错误。它的默认值是false,也就是说编译器对此会产生一个警告。

当我们尝试编译上面这段程序的时候,我们将会得到一个错误: 

    AnyClass.Old()' is obsolete: 'Don't use Old method, use New method'

    开发定制特性(custom attributes)

现在让我们来看看如何开发我们自己的特性。 

    首先我们要从System.Attribute派生出我们自己的特性类(一个从System.Attribute抽象类继承而来的类,不管是直接还是间接继承,都会成为一个特性类。特性类的声明定义了一种可以被放置在声明之上新的特性)。

usingSystem;

publicclassHelpAttribute : Attribute

{

}

  不管你是否相信,我们已经建立了一个定制特性,现在我们可以用它来装饰现有的类就好像上面我们使用Obsolete attribute一样。

[Help()]

publicclassAnyClass

{

}

  注意:对一个特性类名使用Attribute后缀是一个惯例。然而,当我们把特性添加到一个程序实体,是否包括 Attribute后缀是我们的自由。编译器会首先在System.Attribute的派生类中查找被添加的特性类。如果没有找到,那么编译器会添加 Attribute后缀继续查找。

 到目前为止,这个特性还没有起到什么作用。下面我们来添加些东西给它使它更有用些。

using System;

public class HelpAttribute : Attribute

{

    public HelpAttribute(String Descrition_in)

    {

        this.description = Description_in;

    }

    protected String description;

    public String Description

    {

        get

        {

            return this.description;

        }

    }

}

[Help("this is a do-nothing class")]

public class AnyClass

{

}

 在上面的例子中,我们给HelpAttribute特性类添加了一个属性并且在后续的部分中我们会在运行时环境中查寻它。

 定义或控制特性的使用

 AttributeUsage类是另外一个预定义特性类,它帮助我们控制我们自己的定制特性的使用。它描述了一个定制特性如和被使用。

 AttributeUsage有三个属性,我们可以把它放置在定制属性前面。第一个属性是:

 ValidOn

 通过这个属性,我们能够定义定制特性应该在何种程序实体前放置。一个属性可以被放置的所有程序实体在AttributeTargets enumerator中列出。通过OR操作我们可以把若干个AttributeTargets值组合起来。

 AllowMultiple

 这个属性标记了我们的定制特性能否被重复放置在同一个程序实体前多次。

 Inherited

 我们可以使用这个属性来控制定制特性的继承规则。它标记了我们的特性能否被继承。

 下面让我们来做一些实际的东西。我们将会在刚才的Help特性前放置AttributeUsage特性以期待在它的帮助下控制Help特性的使用。 

using System;

[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]

public class HelpAttribute : Attribute

{

    public HelpAttribute(String Description_in)

    {

        this.description = Description_in;

    }

    protected String description;

    public String Description

    {

        get

        {

            return this.description;

        }

    }

}

 先让我们来看一下AttributeTargets.Class。它规定了Help特性只能被放在class的前面。这也就意味着下面的代码将会产生错误: 

[Help("this is a do-nothing class")]

public class AnyClass

{

    [Help("this is a do-nothing method")] //error

    public void AnyMethod()

    {

    }

}

 编译器报告错误如下:

 AnyClass.cs: Attribute 'Help' is not valid on this declaration type.

 It is valid on 'class' declarations only. 

 我们可以使用AttributeTargets.All来允许Help特性被放置在任何程序实体前。可能的值是:

 Assembly,Module,Class,Struct,Enum,Constructor,Method,Property,Field,Event,Interface,Parameter,Delegate

 All = Assembly | Module | Class | Struct | Enum | Constructor | Method | Property | Field | Event | Interface | Parameter | Delegate

 ClassMembers = Class | Struct | Enum | Constructor | Method | Property | Field | Event | Delegate | Interface

 下面考虑一下AllowMultiple = false。它规定了特性不能被重复放置多次。 

[Help("this is a do-nothing class")]

[Help("it contains a do-nothing method")]

public class AnyClass

{

    [Help("this is a do-nothing method")] //error

    public void AnyMethod()

    {

    }

}

 它产生了一个编译期错误。

 AnyClass.cs: Duplicate 'Help' attribute

 Ok,现在我们来讨论一下最后的这个属性。Inherited, 表明当特性被放置在一个基类上时,它能否被派生类所继承。

[Help("BaseClass")]

public class Base

{

}

public class Derive : Base

{

}

 这里会有四种可能的组合:

1[AttributeUsage(AttributeTargets.Class, AllowMultiple =false, Inherited =false)]

2[AttributeUsage(AttributeTargets.Class, AllowMultiple =true, Inherited =false)]

3[AttributeUsage(AttributeTargets.Class, AllowMultiple =false, Inherited =true)]

4[AttributeUsage(AttributeTargets.Class, AllowMultiple =true, Inherited =true)]

 第一种情况:

 如果我们查询(Query)(稍后我们会看到如何在运行期查询一个类的特性)Derive类,我们将会发现Help特性并不存在,因为inherited属性被设置为false。

 第二种情况:

 和第一种情况相同,因为inherited也被设置为false。

 第三种情况:

 为了解释第三种和第四种情况,我们先来给派生类添加点代码:

[Help("BaseClass")]

public class Base

{

}

[Help("DeriveClass")]

public class Derive : Base

{

}

 现在我们来查询一下Help特性,我们只能得到派生类的属性,因为inherited被设置为true,但是AllowMultiple却被设置为false。因此基类的Help特性被派生类Help特性覆盖了。

 第四种情况:

 在这里,我们将会发现派生类既有基类的Help特性,也有自己的Help特性,因为AllowMultiple被设置为true。

 定义或控制特性的使用AttributeUsage类是另外一个预定义特性类,它帮助我们控制我们自己的定制特性的使用。它描述了一个定制特性如何被使用。

属性和特性的区别可以参考一下:http://developer.51cto.com/art/200908/147097.htm

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/Foxalien/archive/2009/12/05/4946672.aspx

相关文章

  • C# 特性详解

    来源:https://www.cnblogs.com/liuxinxin/articles/2265672.htm...

  • C#语言特性发展史

    C#语言特性发展史 Intro 本文主要总结介绍C# 每个版本带来的不同的语言特性。 C#,读作C Sharp,是...

  • C#特性(Attribute)-现学现用

    前言 想要灵性的使用C#反射机制,特性(Attribute)的使用是必不可少的。 C# 特性(Attribute)...

  • C#枚举类型常用扩展方法(三)

    C#获取枚举值特性(Display、Description、自定义特性) 一、Display特性 调用如下: 二、...

  • 目录 - C#

    总目录 C# 第01局:泛型 C# 第02局:反射 C# 第03局:特性 C# 第04局:委托 C# 第05局:事...

  • C#语言入门详解006

    006 C#类型、变量与对象详解 目录 *什么是类型*类型在C#语言中的作用*C#语言的类型系统*变量、对象与内存...

  • C# 语言历史版本特性(C# 1.0到C# 8.0汇总)

    C# 1.0 特性Classes:面向对象特性,支持类类型Structs:结构Interfaces:接口Event...

  • Java Servlet API

    Servlet 支持的版本 Servlet 3.0 新特性详解 Servlet 3.0 新特性概述Servlet ...

  • C# 特性

    泛型 无 lambda表达式 无 匿名函数 无 委托 winfrom界面委托 在对控件进行操作的时候,可以通过判断...

  • c#特性

    c#特性: 特性(Attribute)是用于在运行时传递程序中的各种元素(比如类,方法,结构,枚举,组件等)的行为...

网友评论

      本文标题:C# 特性详解

      本文链接:https://www.haomeiwen.com/subject/girucctx.html