C#使用反射机制实现延迟绑定
作者:Darren 时间:2021-06-13 22:22:42
反射允许我们在编译期或运行时获取程序集的元数据,通过反射可以做到:
● 创建类型的实例
● 触发方法
● 获取属性、字段信息
● 延迟绑定
......
如果在编译期使用反射,可通过如下2种方式获取程序集Type类型:
1、Type类的静态方法
Type type = Type.GetType("somenamespace.someclass");
2、通过typeof
Type type = typeof(someclass);
如果在运行时使用反射,通过运行时的Assembly实例方法获取Type类型:
Type type = asm.GetType("somenamespace.someclass");
获取反射信息
有这样的一个类:
public class Student
{
public int Id { get; set; }
public string Name { get; set; }
public float Score { get; set; }
public Student()
{
this.Id = -1;
this.Name = string.Empty;
this.Score = 0;
}
public Student(int id, string name, float score)
{
this.Id = id;
this.Name = name;
this.Score = score;
}
public string DisplayName(string name)
{
return string.Format("学生姓名:{0}", name);
}
public void ShowScore()
{
Console.WriteLine("学生分数是:" + this.Score);
}
}
通过如下获取反射信息:
static void Main(string[] args)
{
Type type = Type.GetType("ConsoleApplication1.Student");
//Type type = typeof (Student);
Console.WriteLine(type.FullName);
Console.WriteLine(type.Namespace);
Console.WriteLine(type.Name);
//获取属性
PropertyInfo[] props = type.GetProperties();
foreach (PropertyInfo prop in props)
{
Console.WriteLine(prop.Name);
}
//获取方法
MethodInfo[] methods = type.GetMethods();
foreach (MethodInfo method in methods)
{
Console.WriteLine(method.ReturnType.Name);
Console.WriteLine(method.Name);
}
Console.ReadKey();
}
延迟绑定
在通常情况下,为对象实例赋值是发生在编译期,如下:
Student stu = new Student();
stu.Name = "somename";
而"延迟绑定",为对象实例赋值或调用其方法是发生在运行时,需要获取在运行时的程序集、Type类型、方法、属性等。
//获取运行时的程序集
Assembly asm = Assembly.GetExecutingAssembly();
//获取运行时的Type类型
Type type = asm.GetType("ConsoleApplication1.Student");
//获取运行时的对象实例
object stu = Activator.CreateInstance(type);
//获取运行时指定方法
MethodInfo method = type.GetMethod("DisplayName");
object[] parameters = new object[1];
parameters[0] = "Darren";
//触发运行时的方法
string result = (string)method.Invoke(stu, parameters);
Console.WriteLine(result);
Console.ReadKey();
来源:https://www.cnblogs.com/darrenji/p/3817999.html
标签:C#,反射,延迟,绑定
0
投稿
猜你喜欢
关于@RequestLine的使用及配置
2023-09-23 20:52:19
Android利用ViewPager实现滑动广告板实例源码
2021-12-17 18:48:15
C#根据年月日计算星期几的函数
2022-03-17 04:50:50
Java数组动态增加容量过程解析
2023-06-07 07:35:24
RestTemplate自定义请求失败异常处理示例解析
2021-12-03 22:13:17
java实现文件归档和还原
2023-02-28 23:09:51
深入理解java三种工厂模式
2022-03-11 06:09:53
WCF如何使用动态代理精简代码架构
2023-09-17 16:25:42
深入理解堆排序及其分析
2022-05-09 00:16:09
Spring Cloud Gateway 拦截响应问题分析(数据截断问题)
2022-06-20 07:30:27
Android TabWidget底部显示效果
2022-08-05 10:54:40
C#后台接受前台JSON字符串装换成字典集合处理
2023-07-03 02:38:55
java后台接收app上传的图片的示例代码
2022-11-03 00:04:15
详解Android更改APP语言模式的实现过程
2023-05-18 16:56:35
c语言动态数组示例
2023-11-02 22:56:44
SpringBoot实现单文件与多文件上传功能
2023-03-22 23:44:11
Spring Boot 防止接口恶意刷新和暴力请求的实现
2022-05-08 03:54:58
java异步上传图片示例
2023-05-31 13:42:51
Android 遍历SDCARD的文件夹并显示目录信息
2021-06-01 21:49:04
Spring Cloud Ribbon的踩坑记录与原理详析
2023-02-06 04:06:55