如题

解决方案 »

  1.   

    所谓声明式编程,可以通过设置Attribute动态改变代码的执行方式
      

  2.   

    所谓声明式编程,可以通过设置Attribute动态改变代码的执行方式我不理解 能说详细点,或者那里有详细的资料?对函数设置属性有什么好处?
      

  3.   

    Attribute 类将预定义的系统信息或用户定义的自定义信息与目标元素相关联。目标元素可以是程序集、类、构造函数、委托、枚举、事件、字段、接口、方法、可移植可执行文件模块、参数、属性 (Property)、返回值、结构或其他属性 (Attribute)。属性所提供的信息也称为元数据。元数据可由应用程序在运行时进行检查以控制程序处理数据的方式,也可以由外部工具在运行前检查以控制应用程序处理或维护自身的方式。例如,.NET Framework 预定义属性类型并使用属性类型控制运行时行为,某些编程语言使用属性类型表示 .NET Framework 公共类型系统不直接支持的语言功能。 所有属性类型都直接或间接地从 Attribute 类派生。属性可应用于任何目标元素;多个属性可应用于同一目标元素;并且属性可由从目标元素派生的元素继承。使用 AttributeTargets 类可以指定属性所应用到的目标元素。 Attribute 类提供检索和测试自定义属性的简便方法。有关使用属性的更多信息,请参见利用属性扩展元数据。
    下面的代码示例演示 Attribute 的用法。 using System;
    using System.Reflection;namespace CustomAttrCS {
    // An enumeration of animals. Start at 1 (0 = uninitialized).
    public enum Animal {
    // Pets.
    Dog = 1,
    Cat,
    Bird,
    } // A custom attribute to allow a target to have a pet.
    public class AnimalTypeAttribute : Attribute {
    // The constructor is called when the attribute is set.
    public AnimalTypeAttribute(Animal pet) {
    thePet = pet;
    } // Keep a variable internally ...
    protected Animal thePet; // .. and show a copy to the outside world.
    public Animal Pet {
    get { return thePet; }
    set { thePet = Pet; }
    }
    } // A test class where each method has its own pet.
    class AnimalTypeTestClass {
    [AnimalType(Animal.Dog)]
    public void DogMethod() {} [AnimalType(Animal.Cat)]
    public void CatMethod() {} [AnimalType(Animal.Bird)]
    public void BirdMethod() {}
    } class DemoClass {
    static void Main(string[] args) {
    AnimalTypeTestClass testClass = new AnimalTypeTestClass();
    Type type = testClass.GetType();
    // Iterate through all the methods of the class.
    foreach(MethodInfo mInfo in type.GetMethods()) {
    // Iterate through all the Attributes for each method.
    foreach (Attribute attr in 
    Attribute.GetCustomAttributes(mInfo)) {
    // Check for the AnimalType attribute.
    if (attr.GetType() == typeof(AnimalTypeAttribute))
    Console.WriteLine(
    "Method {0} has a pet {1} attribute.", 
    mInfo.Name, ((AnimalTypeAttribute)attr).Pet);
    } }
    }
    }
    }/*
     * Output:
     * Method DogMethod has a pet Dog attribute.
     * Method CatMethod has a pet Cat attribute.
     * Method BirdMethod has a pet Bird attribute.
     */
      

  4.   

    .NET Framework 开发人员指南  
    特性概述  
    如果您使用过 C++,或许对包含关键字(如 public 和 private)的声明比较熟悉,这些关键字提供有关类成员的其他信息。另外,这些关键字通过描述类成员对其他类的可访问性来进一步定义类成员的行为。由于编译器被显式设计为识别预定义关键字,因此传统上您没有机会创建自己的关键字。但是,公共语言运行库允许您添加类似关键字的描述性声明(称为属性 (Attribute))来批注编程元素,如类型、字段、方法和属性 (Property)。为运行库编译代码时,该代码被转换为 Microsoft 中间语言 (MSIL),并同编译器生成的元数据一起被放到可移植可执行 (PE) 文件的内部。属性 (Attribute) 使您得以向元数据中放置额外的描述性信息,并可使用运行库反射服务提取该信息。当您声明从 System.Attribute 派生的特殊类的实例时,编译器创建属性 (Attribute)。.NET Framework 出于多种原因使用属性 (Attribute) 并通过它们解决若干问题。属性 (Attribute) 描述如何将数据序列化,指定用于强制安全性的特性,并限制实时 (JIT) 编译器的优化,从而使代码易于调试。属性 (Attribute) 还可以记录文件名或代码作者,或在窗体开发阶段控制控件和成员的可见性。可使用属性 (Attribute) 以几乎所有可能的方式描述代码,并以富有创造性的新方式影响运行库行为。使用属性 (Attribute),可以向 C#、C++ 托管扩展、Microsoft Visual Basic 2005 或其他任何以运行库为目标的语言添加自己的描述性元素,而不必重新编写编译器。