C#使用反射机制实现延迟绑定
短信预约 -IT技能 免费直播动态提醒
反射允许我们在编译期或运行时获取程序集的元数据,通过反射可以做到:
● 创建类型的实例
● 触发方法
● 获取属性、字段信息
● 延迟绑定
......
如果在编译期使用反射,可通过如下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();
到此这篇关于C#使用反射机制实现延迟绑定的文章就介绍到这了。希望对大家的学习有所帮助,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341