在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
随便建一个类 写上方法 void Start () { //var types = Assembly.GetEntryAssembly().GetTypes(); var types = Assembly.GetCallingAssembly().GetTypes(); var aType = typeof(A); Debug.Log(aType.FullName); List<A> alist = new List<A>(); foreach (var type in types) { var baseType = type.BaseType; //获取基类 while (baseType != null) //获取所有基类 { Debug.Log(baseType.Name); if (baseType.Name == aType.Name) { Type objtype = Type.GetType(type.FullName, true); object obj = Activator.CreateInstance(objtype); if (obj != null) { A info = obj as A; alist.Add(info); } break; } else { baseType = baseType.BaseType; } } } foreach (var item in alist) { item.a();//执行方法 } }
然后建几个类测试一下 public abstract class A { public abstract void a(); } public class AA:A { public override void a() { Debug.Log("AA......."); } } public class BB : A { public override void a() { Debug.Log("BB......."); } } public class CC : A { public override void a() { Debug.Log("CC......."); } } 这样就可以调用所有子类中的a方法了 |
请发表评论