当前位置: 首页 > article >正文

C# Attribute 介绍

C# 中的 Attribute (特性)

Attribute 是 C# 中用于向代码元素(类、方法、属性、字段、事件等)附加元数据信息的机制。Attribute 不会直接影响代码的执行逻辑,但可以用于标记信息,并在运行时或编译时通过反射进行查询和处理。它们常被用于:

  • 控制序列化行为
  • 指定数据库映射信息
  • 提供文档注释
  • 控制程序元数据

Attribute 的基本结构

所有的特性类都继承自 System.Attribute,并且可以应用于代码元素中。特性可以通过 [AttributeName] 的方式使用。

Attribute 的创建与使用

1. 创建自定义 Attribute

要创建一个自定义的 Attribute,您需要继承自 System.Attribute 并添加构造函数及属性。可以通过 [AttributeUsage] 来指定特性的适用范围。

using System;

// 定义自定义特性
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = true)]
public class DeveloperInfoAttribute : Attribute
{
    public string DeveloperName { get; }
    public string Project { get; set; }
    public string DateAssigned { get; set; }

    // 构造函数
    public DeveloperInfoAttribute(string developerName)
    {
        DeveloperName = developerName;
    }
}
2. 应用自定义 Attribute

接下来可以在类或方法上应用这个自定义的 DeveloperInfo 特性:

[DeveloperInfo("Alice", Project = "CRM System", DateAssigned = "2023-01-10")]
[DeveloperInfo("Bob", Project = "ERP System", DateAssigned = "2023-05-20")]
public class SampleClass
{
    [DeveloperInfo("Charlie", Project = "Mobile App", DateAssigned = "2024-02-15")]
    public void SampleMethod()
    {
        Console.WriteLine("This is a sample method.");
    }
}
3. 通过反射读取 Attribute 信息

可以使用反射来读取代码中的特性信息:

using System;
using System.Reflection;

public class Program
{
    public static void Main()
    {
        // 获取类上的特性
        Type type = typeof(SampleClass);
        object[] classAttributes = type.GetCustomAttributes(typeof(DeveloperInfoAttribute), false);

        foreach (DeveloperInfoAttribute attr in classAttributes)
        {
            Console.WriteLine($"Class Developer: {attr.DeveloperName}, Project: {attr.Project}, Date Assigned: {attr.DateAssigned}");
        }

        // 获取方法上的特性
        MethodInfo methodInfo = type.GetMethod("SampleMethod");
        object[] methodAttributes = methodInfo.GetCustomAttributes(typeof(DeveloperInfoAttribute), false);

        foreach (DeveloperInfoAttribute attr in methodAttributes)
        {
            Console.WriteLine($"Method Developer: {attr.DeveloperName}, Project: {attr.Project}, Date Assigned: {attr.DateAssigned}");
        }
    }
}

运行结果

Class Developer: Alice, Project: CRM System, Date Assigned: 2023-01-10
Class Developer: Bob, Project: ERP System, Date Assigned: 2023-05-20
Method Developer: Charlie, Project: Mobile App, Date Assigned: 2024-02-15

常用内置 Attribute

  • [Obsolete]: 标记某个方法或类已经过时,可以指定警告或错误。
  • [Serializable]: 标记类可以被序列化。
  • [DllImport]: 用于调用外部的非托管代码(P/Invoke)。
  • [Conditional]: 指示某个方法的执行受条件编译符的控制。
示例:[Obsolete]
public class MyClass
{
    [Obsolete("Use NewMethod instead.")]
    public void OldMethod()
    {
        Console.WriteLine("Old method");
    }

    public void NewMethod()
    {
        Console.WriteLine("New method");
    }
}

当调用 OldMethod 时,编译器会发出警告:

MyClass obj = new MyClass();
obj.OldMethod();  // 警告:'OldMethod' is obsolete: 'Use NewMethod instead.'

Attribute 的参数

特性的构造函数参数可以是以下几种类型:

  • 基本类型:如 int, string, bool, char 等。
  • 枚举类型。
  • Type 类型。
  • object,可以允许 null
  • 一维数组(基本类型、枚举或 Type)。

Attribute 的高级用法

  1. 允许多次使用的特性 通过 AttributeUsage 设置 AllowMultiple = true,可以让特性在同一个代码元素上多次使用。
  2. 继承和覆盖特性 子类可以继承父类的特性,且特性可以设置是否支持继承。

总结

Attribute 是 C# 中一种强大的元数据机制,允许开发者在编译时和运行时动态地控制代码行为。通过特性,您可以轻松地向代码添加元数据,并通过反射进行处理。


http://www.kler.cn/a/350488.html

相关文章:

  • 【JavaEE】Spring(1)
  • 什么是三高架构?
  • 如何使用C#与SQL Server数据库进行交互
  • 移动端布局 ---- 学习分享
  • 介绍下常用的前端框架及时优缺点
  • AI编程工具横向评测--Cloudstudio塑造完全态的jupyter notebook助力数据分析应用开发
  • 微信小程序后台搭建—node+mysql
  • 农业机器人综述:技术现状、应用场景及未来展望
  • YOLOv8改进 - 注意力篇 - 引入ShuffleAttention注意力机制
  • 小米电机与STM32——CAN通信
  • 2024年第九届数维杯大学生数学建模挑战赛赛题和数维杯国际数学建模 LaTeX 模板
  • Android 未来可能支持 Linux 应用,Linux 终端可能登陆 Android 平台
  • 绕过MIME-Type验证
  • 算法知识点————【DFS】【BFS】【树】【图】
  • 发送URL请求中的问题记录
  • [LeetCode] 844. 比较含退格的字符串
  • ubuntu22.04安装mysql5.7
  • 综合小案例
  • foxy moveit2 小鱼
  • 珠海自闭症寄宿学校:打造温馨家庭般的学习氛围
  • mongodb的相关关键字说明
  • 记录使用datagrip备份数据库信息
  • 基于Java微信小程序的学生签到系统的详细设计和实现(源码+lw+部署文档+讲解等)
  • 【SPIE独立出版】第四届计算机、信息工程与电子材料国际学术会议 (CTIEEM 2024,2024年11月15-17日 )
  • CrossSim安装教程
  • 基于SpringBoot+Vue+uniapp的在线招聘平台的详细设计和实现