c#核心基础 – 浅谈 c# 中的特性 Attribute)

c#核心基础 – 浅谈 c# 中的特性 Attribute)特性是用于在运行时传递程序中各种元素的行为信息的声明性标签。可以通过使用特性向程序添加声明性信息。一、运用范围程序集,模块,类型,字段,方法,方

欢迎大家来到IT世界,在知识的湖畔探索吧!

特性(Attribute)是用于在运行时传递程序中各种元素(比如类、方法、结构、枚举、组件等)的行为信息的声明性标签。可以通过使用特性向程序添加声明性信息。一个声明性标签是通过放置在它所应用的元素前面的方括号[ ]来描述的。

.Net 框架提供了两种类型的特性:预定义特性和自定义特性。

一、运用范围

程序集,模块,类型(类,结构,枚举,接口,委托),字段,方法(含构造),方法,参数,方法返回值,属性(property),Attribute

 [AttributeUsage(AttributeTargets.All)]
 public class TestAttribute : Attribute
 {
 }
 [TestAttribute]//结构
 public struct TestStruct { }
 
 [TestAttribute]//枚举
 public enum TestEnum { }
 
 
 [TestAttribute]//类上
 public class TestClass
 {
 [TestAttribute]
 public TestClass() { }
 
 [TestAttribute]//字段
 private string _testField;
 
 [TestAttribute]//属性
 public string TestProperty { get; set; }
 
 [TestAttribute]//方法上
 [return: TestAttribute]//定义返回值的写法
 public string TestMethod([TestAttribute] string testParam)//参数上
 {
 throw new NotImplementedException();
 }
 }

欢迎大家来到IT世界,在知识的湖畔探索吧!

这里我们给出了除了程序集和模块以外的常用的Atrribute的定义。

二、自定义Attribute

为了符合“公共语言规范(CLS)”的要求,所有的自定义的Attribute都必须继承System.Attribute。

第一步:自定义一个检查字符串长度的Attribute

欢迎大家来到IT世界,在知识的湖畔探索吧![AttributeUsage(AttributeTargets.Property)]
public class StringLengthAttribute : Attribute
{
 private int _maximumLength;
 public StringLengthAttribute(int maximumLength)
 {
 _maximumLength = maximumLength;
 }
 
 public int MaximumLength
 {
 get { return _maximumLength; }
 }
}

AttributeUsage这个系统提供的一个Attribute,作用来限定自定义的Attribute作用域,这里我们只允许这个Attribute运用在Property上,内建一个带参的构造器,让外部传入要求的最大长度。

第二步:创建一个实体类来运行我们自定义的属性

public class People
{
 [StringLength(8)]
 public string Name { get; set; }
 
 [StringLength(15)]
 public string Description { get; set; }
}

定义了两个字符串字段Name和Description, Name要求最大长度为8个,Description要求最大长度为15.

第三步:创建验证的类

欢迎大家来到IT世界,在知识的湖畔探索吧!public class ValidationModel
{
 
 public void Validate(object obj)
 {
 var t = obj.GetType();
 
 //由于我们只在Property设置了Attibute,所以先获取Property
 var properties = t.GetProperties();
 foreach (var property in properties)
 {
 
 //这里只做一个stringlength的验证,这里如果要做很多验证,需要好好设计一下,千万不要用if elseif去链接
 //会非常难于维护,类似这样的开源项目很多,有兴趣可以去看源码。
 if (!property.IsDefined(typeof(StringLengthAttribute), false)) continue;
 
 var attributes = property.GetCustomAttributes();
 foreach (var attribute in attributes)
 {
 //这里的MaximumLength 最好用常量去做
 var maxinumLength = (int)attribute.GetType().
 GetProperty("MaximumLength").
 GetValue(attribute);
 
 //获取属性的值
 var propertyValue = property.GetValue(obj) as string;
 if (propertyValue == null)
 throw new Exception("exception info");//这里可以自定义,也可以用具体系统异常类
 
 if (propertyValue.Length > maxinumLength)
 throw new Exception(string.Format("属性{0}的值{1}的长度超过了{2}", property.Name, propertyValue, maxinumLength));
 }
 }
 
 }
}

这里用到了反射,因为Attribute一般都会和反射一起使用,这里验证了字符串长度是否超过所要求的,如果超过了则会抛出异常

private static void Main(string[] args)
{
 var people = new People()
 {
 Name = "qweasdzxcasdqweasdzxc",
 Description = "description"
 };
 try
 {
 new ValidationModel().Validate(people);
 }
 catch (Exception ex)
 {
 Console.WriteLine(ex.Message);
 }
 Console.ReadLine();
}

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://itzsg.com/34236.html

(0)

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

联系我们YX

mu99908888

在线咨询: 微信交谈

邮件:itzsgw@126.com

工作时间:时刻准备着!

关注微信