C#根据输入的字符串来创建类的实例

  abstract class Vehicle
    {
        public abstract void Drive();
    }
    
    class Car : Vehicle
    {
        public override void Drive()
        {
            Console.WriteLine("Car is driving...");
        }
    }

    class Bus : Vehicle
    {
        public override void Drive()
        {
            Console.WriteLine("Bus is driving...");
        }
    }

    class Program
    {
        static void Main(string[] args)
        {
            string typeName = Console.ReadLine();
            Type type = Type.GetType(new Program().GetType().Namespace + "." + typeName, true, true);
            Vehicle vehicle = (Vehicle)Activator.CreateInstance(type);
            vehicle.Drive();
            Console.ReadKey();
        }
    }
 

运行结果:
C#根据输入的字符串来创建类的实例
C#根据输入的字符串来创建类的实例

上一篇:NEXIQ 125032 USB Link Diesel Truck Diagnose Interface Introduction


下一篇:DroneKit教程(二):控制Pixhawk示例