C#特性学习笔记二

时间:2023-03-09 01:05:05
C#特性学习笔记二

实例探讨:

自定义了一个特性类:

  1. [AttributeUsage(AttributeTargets.Class|AttributeTargets.Method)]
  2. class WahAttribute:System.Attribute
  3. {
  4. private string description;
  5. public string Description
  6. {
  7. get { return description; }
  8. set { description = value; }
  9. }
  10. private string author;
  11. public string Author
  12. {
  13. get { return author; }
  14. set { author = value; }
  15. }
  16. public WahAttribute(string desc)
  17. {
  18. this.description = desc;
  19. }
  20. }

[AttributeUsage(AttributeTargets.Class|AttributeTargets.Method)]
class WahAttribute:System.Attribute
{
private string description;

public string Description
{
get { return description; }
set { description = value; }
}
private string author;

public string Author
{
get { return author; }
set { author = value; }
}
public WahAttribute(string desc)
{
this.description = desc;
}
}

运用特性类:

  1. namespace attributeDemo
  2. {
  3. public class Teacher
  4. {
  5. private string name;
  6. public string Name
  7. {
  8. get { return name; }
  9. set { name = value; }
  10. }
  11. private int age;
  12. public int Age
  13. {
  14. get { return age; }
  15. set { age = value; }
  16. }
  17. private string sex;
  18. public string Sex
  19. {
  20. get { return sex; }
  21. set { sex = value; }
  22. }
  23. //只有用户名为wah的才可以调用此方法
  24. [Wah("this is my attribute test", Author = "wah", Description = "test")]
  25. public string getMessage()
  26. {
  27. return "好好学习,天天向上";
  28. }
  29. [Wah("this is with parameters test",Author="wanggaihui",Description="test with parameters")]
  30. public int Test(int a,int b)
  31. {
  32. return a+b;
  33. }
  34. }
  35. }

namespace attributeDemo
{
public class Teacher
{
private string name;

public string Name
{
get { return name; }
set { name = value; }
}
private int age;

public int Age
{
get { return age; }
set { age = value; }
}
private string sex;

public string Sex
{
get { return sex; }
set { sex = value; }
}
//只有用户名为wah的才可以调用此方法
[Wah("this is my attribute test", Author = "wah", Description = "test")]
public string getMessage()
{
return "好好学习,天天向上";
}
[Wah("this is with parameters test",Author="wanggaihui",Description="test with parameters")]
public int Test(int a,int b)
{
return a+b;
}
}
}

处理特性类:

  1. private void button_Click(object sender, EventArgs e)
  2. {
  3. //得到类型
  4. Type type = typeof(Teacher);
  5. //得到此类型所有方法
  6. MethodInfo[] methods = type.GetMethods();
  7. foreach (MethodInfo method in methods)
  8. {
  9. //得到此方法的所有特性
  10. object[] attributes = method.GetCustomAttributes(false);
  11. foreach (object o in attributes)
  12. {
  13. //判断是否是自己定义的特性
  14. if (o.GetType() == typeof(WahAttribute))
  15. {
  16. //强转取得值
  17. WahAttribute waha = (WahAttribute)o;
  18. this.listBox1.Items.Add("author=" + waha.Author);
  19. this.listBox1.Items.Add("description=" + waha.Description);
  20. }
  21. }
  22. }
  23. }

private void button_Click(object sender, EventArgs e)
{
//得到类型
Type type = typeof(Teacher);
//得到此类型所有方法
MethodInfo[] methods = type.GetMethods();
foreach (MethodInfo method in methods)
{
//得到此方法的所有特性
object[] attributes = method.GetCustomAttributes(false);
foreach (object o in attributes)
{
//判断是否是自己定义的特性
if (o.GetType() == typeof(WahAttribute))
{
//强转取得值
WahAttribute waha = (WahAttribute)o;
this.listBox1.Items.Add("author=" + waha.Author);
this.listBox1.Items.Add("description=" + waha.Description);
}
}
}
}

C#特性可以应用于各种类型和成员。加在类前面的是类特性,加在方法前面的是方法特性。无论他们被用在哪里,无论他们之间有什么区别,特性的最主要的目的就是自描述。并且因为特性是可以由自己定制的,而不仅仅局限于.net提供的那几个现成的,因此给C#程序开发带来了很大的灵活性。