一般的介面實現多態 定義介面 定義實現的類 一般實現的方法 升級版 添加自定義(這個網上好多) 實現類 調用方法 這個可以避免需要維護swich語句 ...
一般的介面實現多態
定義介面
interface Ipeople { void say(); }
定義實現的類
public class man : Ipeople { public void say() { MessageBox.Show("man"); } } public class woman : Ipeople { public void say() { MessageBox.Show("woman"); } }
一般實現的方法
升級版
添加自定義(這個網上好多)
實現類
調用方法
private static void NewMethod(string tpye) { Ipeople ib = null; var types = AppDomain.CurrentDomain.GetAssemblies() .SelectMany(a => a.GetTypes().Where(t => t.GetInterfaces().Contains(typeof(Ipeople)))) .ToArray(); foreach (var v in types) { var attribute = v.GetCustomAttributes(typeof(NameAttribute), false).FirstOrDefault(); if (attribute != null && ((NameAttribute)attribute).Name == tpye) { ib = (Ipeople)v.Assembly.CreateInstance(v.FullName); break; } } if (ib != null) ib.say(); }
這個可以避免需要維護swich語句