欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C# AttributeUsage使用案例详解

程序员文章站 2022-06-22 16:18:23
c# attributeusage的使用是如何的呢?首先让我们来了解一下什么是attributeusage类它是另外一个预定义特性类,attributeusage类的作用就是帮助我们控制定制特性的使用...

c# attributeusage的使用是如何的呢?首先让我们来了解一下什么是attributeusage类它是另外一个预定义特性类,attributeusage类的作用就是帮助我们控制定制特性的使用。其实attributeusage类就是描述了一个定制特性如和被使用。

  c# attributeusage的使用要明白:

  attributeusage有三个属性,我们可以把它放置在定制属性前面。

  • validon
    通过这个属性,我们能够定义定制特性应该在何种程序实体前放置。一个属性可以被放置的所有程序实体在attributetargets enumerator中列出。通过or操作我们可以把若干个attributetargets值组合起来。
  •  allowmultiple
    这个属性标记了我们的定制特性能否被重复放置在同一个程序实体前多次。
  • inherited
    我们可以使用这个属性来控制定制特性的继承规则。它标记了我们的特性能否被继承。

  c# attributeusage的使用实例:

  下面让我们来做一些实际的东西。我们将会在刚才的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   
{   
} 

c# attributeusage的使用会有四种可能的组合:

[help("baseclass")]   
public class base   
{   
}   
     
public class derive : base   
{   
} 

  c# attributeusage的使用第一种情况:

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

  c# attributeusage的使用第二种情况:

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

  c# attributeusage的使用第三种情况:

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

[help("baseclass")]   
public class base   
{   
}   
[help("deriveclass")]   
public class derive : base   
{   
} 

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

  c# attributeusage的使用第四种情况:

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

  c# attributeusage的相关内容就向你介绍到这里,希望对你了解和掌握c# attributeusage的使用有所帮助。

到此这篇关于c# attributeusage使用案例详解的文章就介绍到这了,更多相关c# attributeusage使用内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: C# AttributeUsage