码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2021-02-10 13:28:53      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:bst   activator   creat   ogr   har   tty   err   span   lin   

  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#根据输入的字符串来创建类的实例

标签:bst   activator   creat   ogr   har   tty   err   span   lin   

原文地址:https://www.cnblogs.com/bruce1992/p/14394945.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!