首页 > 开发 > 综合 > 正文

C# 语言规范--1.14 属性

2024-07-21 02:29:57
字体:
来源:转载
供稿:网友

  c# 是一种命令式语言,但像所有命令式语言一样,它具有某些声明性元素。例如,通过将类中的方法声明为 public、protected、internal、protected internal 或 private,指定它的可访问性。c# 使此功能一般化,以便程序员可以创造出一种新的声明性信息,将此声明性信息附加到各种程序实体,并在运行时检索此声明性信息。程序通过定义和使用属性(第 17 节)来描述这类额外的声明性信息。

  例如,一个框架也许会定义一个可放置在程序元素(如类和方法)上的 helpattribute 属性,使开发人员能够提供从程序元素到其文档的映射。示例

using system;
[attributeusage(attributetargets.all)]
public class helpattribute: attribute
{
   public helpattribute(string url) {
      this.url = url;
   }
   public string topic = null;
   private string url;
   public string url {
      get { return url; }
   }
}

  定义了一个名为 helpattribute 的属性类,它具有一个定位参数 (string url) 和一个命名参数 (string topic)。正如第 17.1 节中所解释的,该属性可以通过它的完整名称 helpattribute 或通过它的隐式简称 help 引用。定位参数由该属性类的公共实例构造函数的形参定义,命名参数则由属性类的公共非静态读写字段和对应的属性定义。

  示例

[help("http://www.microsoft.com/.../class1.htm")]
public class class1
{
   [help("http://www.microsoft.com/.../class1.htm", topic = "f")]
   public void f() {}
}

  显示 help 属性的几种用法。

  在运行时可以利用反射支持检索给定程序元素的属性信息。示例

using system;
class test
{
   static void main() {
      type type = typeof(class1);
      object[] arr = type.getcustomattributes(typeof(helpattribute), true);
      if (arr.length == 0)
         console.writeline("class1 has no help attribute.");
      else {
         helpattribute ha = (helpattribute) arr[0];
         console.writeline("url = {0}, topic = {1}", ha.url, ha.topic);
      }
   }
}

  检查 class1 是否具有 help 属性,如果具有该属性,则写出关联的 topic 和 url 值。

,欢迎访问网页设计爱好者web开发。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表