C#自学——反射(Reflection)
bigegpt 2024-09-22 00:39 3 浏览
反射是很多框架都用到的东西,是从0.25到0.5的一个进阶
反射可以动态创建对象,动态赋值,动态调用方法
反射可以在运行时获得类的信息
每个类都有一个 type对象,构造方法对应的是 ConstructorInfo对象,方法对应的是 MethodInfo对象,字段对应的是 FieldInfo对象,属性对应的是 PropertyInfo对象,使用时需要引用using System.Reflection;
Type
class Dog:Animal
{
public string name;
public int age;
double price;
static double weight;
public Dog() { }
public Dog(string name) { }
public Dog(string name,int age) { }
public override void Say() { }
public double Price { get; set; }
public double Weight { get; set; }
}
class Animal
{
public virtual void Say() { }
}
class Print
{
static void Main()
{
Dog dog = new Dog();
// 获取类的 type 对象常用的三种方式
Type type = typeof(Dog);
Type type1 = dog.GetType();
Type type2 = Type.GetType("Application.Dog");
//假设只知道类的名字,利用类名创建对象实例
Type t = typeof(Dog);
// Activator.CreateInstance(t); 被实例化的对象必须有无参构造方法,没有则会抛出 MissingMethodException 缺失方法异常
object dog1 = Activator.CreateInstance(t); // 相当于 new Dog();,由于返回的是 object ,所以只能用 object 接收
Console.WriteLine(dog1);
Console.WriteLine(t.BaseType); // 获取父类
Console.WriteLine(t.Name); // 获取类名
Console.WriteLine(t.FullName); // 获取全名,包含命名空间
Console.WriteLine(t.IsAbstract); // 判断是否为 抽象类
Console.WriteLine(t.IsArray); // 是否为 数组
Console.WriteLine(t.IsClass); // 是否为 普通类
Console.WriteLine(t.IsEnum); // 是否为 枚举
Console.WriteLine(t.IsPublic); // 是否为 public
Console.WriteLine(t.IsValueType); // 是否为 值类型
Console.WriteLine("------------* 构造方法 *---------------");
// 获取无参构造方法 t.GetConstructor(new Type[0]); 参数要求是 type对象数组,因此无参构造就只需要入参长度为 0 的数组就好了
ConstructorInfo c1 = t.GetConstructor(new Type[0]);
Console.WriteLine(c1); // Void .ctor ctor是IL里面构造方法的表现方式
// 获取参数类型为 string 的构造方法
c1 = t.GetConstructor(new Type[] { typeof(string) });
Console.WriteLine(c1);
// 获取参数类型为 string,int 的构造方法
c1 = t.GetConstructor(new Type[] { typeof(string), typeof(int) });
Console.WriteLine(c1);
Console.WriteLine("------------* 字段 *---------------");
// 获取所有字段,必须是public,获取的是未封装的字段
FieldInfo[] f1 = t.GetFields();
foreach (var field in f1)
{
Console.WriteLine(field);
}
// 获取 非public,且 非static 的字段,如果需要获取 static的,把Instance改成static
f1 = t.GetFields(BindingFlags.NonPublic | BindingFlags.Instance);
foreach (var field in f1)
{
Console.WriteLine(field);
}
Console.WriteLine("------------* 方法 *---------------");
// 获得所有方法
MethodInfo[] m1 = t.GetMethods();
foreach (var method in m1)
{
Console.WriteLine(method);
}
// 获得指定方法
// 注:如果方法有重载,则抛出 AmbiguousMatchException
MethodInfo m2 = t.GetMethod("Say");
Console.WriteLine("\n"+m2);
// 解决方法抛出 AmbiguousMatchException异常
m2 = t.GetMethod("Say",new Type[0]); // 获取无参方法
m2 = t.GetMethod("Say",new Type[] { typeof(string)}); // 获取参数为 string 的方法
Console.WriteLine("------------* 属性 *---------------");
// 获得属性,获取到的是封装过的属性
PropertyInfo[] prop = t.GetProperties();
foreach (var p in prop)
{
Console.WriteLine(p);
}
}
}
输出:
Application.Dog
Application.Animal
Dog
Application.Dog
False
False
True
False
False
False
------------* 构造方法*---------------
Void.ctor()
Void .ctor(System.String)
Void .ctor(System.String, Int32)
------------* 字段*---------------
System.String name
System.Int32 age
System.Double price
System.Double<Price> k__BackingField
System.Double<Weight> k__BackingField
------------* 方法*---------------
Void Say()
Double get_Price()
Void set_Price(Double)
Double get_Weight()
Void set_Weight(Double)
Boolean Equals(System.Object)
Int32 GetHashCode()
System.Type GetType()
System.String ToString()
Void Say()
------------* 属性*---------------
Double Price
Double Weight
反射示例 1
class Dog
{
public string name;
public void Say() { Console.WriteLine("你好,"+Name); }
public void Say(string name) { Console.WriteLine(#34;你好,{name}"); }
public string Name { get; set; }
}
class Print
{
// 反射示例
static void Main()
{
// 创建对象
Type t = typeof(Dog);
object obj = Activator.CreateInstance(t); // 创建对象,调用无参构造(方法1)
object obj1 = t.GetConstructor(new Type[0]).Invoke(new object[0]); // 获得对象的无参构造,调用(方法2)
// 给属性赋值
PropertyInfo prop = t.GetProperty("Name"); // 获得属性
prop.SetValue(obj, "大宝"); // 赋值
// 调用方法
MethodInfo method = t.GetMethod("Say", new Type[0]); // 获得无参方法
MethodInfo method1 = t.GetMethod("Say", new Type[] { typeof(string) }); // 获得有参方法
method.Invoke(obj, new object[0]); // 调用无参方法
method1.Invoke(obj, new object[] { "Tom" }); // 调用有参方法并赋值
}
}
输出:
你好,大宝
你好,Tom
反射示例 2
class Dog
{
public string name;
public void Say() { Console.WriteLine("你好,"+Name); }
public void Say(string name) { Console.WriteLine(#34;你好,{name}"); }
public string Name { get; set; }
}
class Print
{
static void Main()
{
Dog dog = new Dog();
dog.Name = "Tom";
Show(dog);
}
static void Show(object obj)
{
Type t = obj.GetType();
PropertyInfo[] prop = t.GetProperties();
foreach (var p in prop)
{
if (p.CanRead)
{
string name = p.Name;
object value = p.GetValue(obj);
Console.WriteLine(name+"="+value);
}
}
}
}
输出:
Name=Tom
反射示例3 (复制对象的值)(浅拷贝--仅复制对象的值,不是同一个对象)
class Dog
{
public string name;
public string Name { get; set; }
}
class Print
{
static void Main()
{
Dog dog = new Dog();
dog.Name = "Tom";
object dog1 = Clone(dog);
Console.WriteLine(object.ReferenceEquals(dog,dog1)); // 判断是否为同一个对象
}
static object Clone(object obj)
{
Type t = obj.GetType();
object newObject = Activator.CreateInstance(t); // 创建对象
PropertyInfo[] prop = t.GetProperties();
foreach (var p in prop)
{
if (p.CanRead&&p.CanWrite)
{
object value = p.GetValue(obj);
p.SetValue(newObject, value);
}
}
return newObject;
}
}
输出:
False
相关推荐
- pyproject.toml到底是什么东西?(py trim)
-
最近,在Twitter上有一个Python项目的维护者,他的项目因为构建失败而出现了一些bug(这个特别的项目不提供wheel,只提供sdist)。最终,发现这个bug是由于这个项目使用了一个pypr...
- BDP服务平台SDK for Python3发布(bdp数据平台)
-
下载地址https://github.com/imysm/opends-sdk-python3.git说明最近在开发和bdp平台有关的项目,用到了bdp的python的sdk,但是官方是基于p...
- Python-for-Android (p4a):(python-for-android p4a windows)
-
一、Python-for-Android(p4a)简介Python-for-Android(p4a),一个强大的开发工具,能够将你的Python应用程序打包成可在Android设备上运行...
- Qt for Python—Qt Designer 概览
-
前言本系列第三篇文章(QtforPython学习笔记—应用程序初探)、第四篇文章(QtforPython学习笔记—应用程序再探)中均是使用纯代码方式来开发PySide6GUI应用程序...
- Python:判断质数(jmu-python-判断质数)
-
#Python:判断质数defisPrime(n):foriinrange(2,n):ifn%i==0:return0re...
- 为什么那么多人讨厌Python(为什么python这么难)
-
Python那么棒,为什么那么多人讨厌它呢?我整理了一下,主要有这些原因:用缩进替代大括号许多人抱怨Python完全依赖于缩进来创建代码块,代码多一点就很难看到函数在哪里结束,那么你就需要把一个函数拆...
- 一文了解 Python 中带有 else 的循环语句 for-else/while-else
-
在本文中,我们将向您介绍如何在python中使用带有else的for/while循环语句。可能许多人对循环和else一起使用感到困惑,因为在if-else选择结构中else正常...
- python的numpy向量化语句为什么会比for快?
-
我们先来看看,python之类语言的for循环,和其它语言相比,额外付出了什么。我们知道,python是解释执行的。举例来说,执行x=1234+5678,对编译型语言,是从内存读入两个shor...
- 开眼界!Python遍历文件可以这样做
-
来源:【公众号】Python技术Python对于文件夹或者文件的遍历一般有两种操作方法,一种是至二级利用其封装好的walk方法操作:import osfor root,d...
- 告别简单format()!Python Formatter类让你的代码更专业
-
Python中Formatter类是string模块中的一个重要类,它实现了Python字符串格式化的底层机制,允许开发者创建自定义的格式化行为。通过深入理解Formatter类的工作原理和使用方法,...
- python学习——038如何将for循环改写成列表推导式
-
在Python里,列表推导式是一种能够简洁生成列表的表达式,可用于替换普通的for循环。下面是列表推导式的基本语法和常见应用场景。基本语法result=[]foriteminite...
- 详谈for循环和while循环的区别(for循环语句与while循环语句有什么区别)
-
初九,潜龙勿用在刚开始使用python循环语句时,经常会遇到for循环和while循环的混用,不清楚该如何选择;今天就对这2个循环语句做深入的分析,让大家更好地了解这2个循环语句以方便后续学习的加深。...
- Python编程基础:循环结构for和while
-
Python中的循环结构包括两个,一是遍历循环(for循环),一是条件循环(while循环)。遍历循环遍历循环(for循环)会挨个访问序列或可迭代对象的元素,并执行里面的代码块。foriinra...
- 学习编程第154天 python编程 for循环输出菱形图
-
今天学习的是刘金玉老师零基础Python教程第38期,主要内容是python编程for循环输出菱形※。(一)利用for循环输出菱形形状的*号图形1.思路:将菱形分解为上下两个部分三角形图案,分别利用...
- python 10个堪称完美的for循环实践
-
在Python中,for循环的高效使用能显著提升代码性能和可读性。以下是10个堪称完美的for循环实践,涵盖数据处理、算法优化和Pythonic编程风格:1.遍历列表同时获取索引(enumerate...
- 一周热门
- 最近发表
-
- pyproject.toml到底是什么东西?(py trim)
- BDP服务平台SDK for Python3发布(bdp数据平台)
- Python-for-Android (p4a):(python-for-android p4a windows)
- Qt for Python—Qt Designer 概览
- Python:判断质数(jmu-python-判断质数)
- 为什么那么多人讨厌Python(为什么python这么难)
- 一文了解 Python 中带有 else 的循环语句 for-else/while-else
- python的numpy向量化语句为什么会比for快?
- 开眼界!Python遍历文件可以这样做
- 告别简单format()!Python Formatter类让你的代码更专业
- 标签列表
-
- mybatiscollection (79)
- mqtt服务器 (88)
- keyerror (78)
- c#map (65)
- xftp6 (83)
- bt搜索 (75)
- c#var (76)
- xcode-select (66)
- mysql授权 (74)
- 下载测试 (70)
- linuxlink (65)
- pythonwget (67)
- androidinclude (65)
- libcrypto.so (74)
- linux安装minio (74)
- ubuntuunzip (67)
- vscode使用技巧 (83)
- secure-file-priv (67)
- vue阻止冒泡 (67)
- jquery跨域 (68)
- php写入文件 (73)
- kafkatools (66)
- mysql导出数据库 (66)
- jquery鼠标移入移出 (71)
- 取小数点后两位的函数 (73)