C#定义简单的反射工厂实例分析

 更新时间:2015年04月03日 09:02:10   作者:xugang  
这篇文章主要介绍了C#定义简单的反射工厂的用法,实例分析了反射工厂的原理与使用技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了C#定义简单的反射工厂用法。分享给大家供大家参考。具体分析如下:

首先,定义一个水果抽象类,代码如下:

class Fruit
{
  //定义虚方法
  public virtual void Eating()
  {
    Console.WriteLine("水果有各种吃法。。。");
  }
}

然后,实例化几个水果类,代码如下:

class Banana : Fruit
{
  public override void Eating()
  {
    Console.WriteLine("香蕉扒皮吃。。。");
  }
}
class Orange : Fruit
{
  public override void Eating()
  {
    Console.WriteLine("橘子剥皮吃。。。");
  }
}
class Apple : Fruit
{
  public new void Eating()
  {
    Console.WriteLine("苹果洗了吃。。。");
  }
  //public override void Eating()
  //{
  //  Console.WriteLine("苹果洗了吃。。。");
  //}
}

最后,创建水果工厂,代码如下:

//水果工厂
class FruitFactory
{
  //生成水果
  public Fruit CreateFruit(string _fruitname)
  {
    //不使用反射的做法如下:
    //if ("Apple" == _fruitname)
    //{
    //  return new Apple();
    //}
    //else if ("Banana" == _fruitname)
    //{
    //  return new Banana();
    //}
    //else if ("Orange" == _fruitname)
    //{
    //  return new Orange();
    //}
    //else
    //{
    //  throw new Exception("您指定的水果不生产!");
    //}
    //获得当前程序的命名空间
    string strNamespace = Assembly.GetExecutingAssembly().GetName().Name;
    //调用方法一:使用 Type 类
    //Type type = Type.GetType("ConsoleApplication1." + _fruitname);
    //ConstructorInfo ctorInfo = type.GetConstructor(System.Type.EmptyTypes);
    //// Invoke()方法:返回与构造函数关联的类的实例。
    //Fruit fruitA = (Fruit)ctorInfo.Invoke(new object[0]);
    //return fruitA;
    //调用方法二:使用 Assembly 类
    //Assembly myAssembly = Assembly.GetExecutingAssembly();
    //Fruit fruitB = (Fruit)myAssembly.CreateInstance("ConsoleApplication1." + _fruitname);
    //return fruitB;
    //调用方法三:使用 Activator 类
    Fruit fruitC = (Fruit)Activator.CreateInstance(Type.GetType("ConsoleApplication1." + _fruitname, false, true));
    return fruitC;
  }
}

测试代码如下:

class Program
{
  static void Main(string[] args)
  {
    FruitFactory ff = new FruitFactory();
    //打印(来自父类的):水果有各种吃法。。。
    Fruit fA = ff.CreateFruit("Apple");
    fA.Eating();
    //打印(来自子类的):苹果洗了吃。。。
    Apple apple = ff.CreateFruit("Apple") as Apple;
    apple.Eating();
    Fruit fB = ff.CreateFruit("Banana");
    fB.Eating();
    Fruit fC = ff.CreateFruit("Orange");
    fC.Eating();
  }
}

利用反射创建实例对象的常用三种方式:

// 方式一:使用 Type 类
Type type = Type.GetType("ConsoleApplication1." + _fruitname);
ConstructorInfo ctorInfo = type.GetConstructor(System.Type.EmptyTypes);
// Invoke()方法:返回与构造函数关联的类的实例。
Fruit fruitA = (Fruit)ctorInfo.Invoke(new object[0]);
return fruitA;
// 方式二:使用 Assembly 类
Assembly myAssembly = Assembly.GetExecutingAssembly();
Fruit fruitB = (Fruit)myAssembly.CreateInstance("ConsoleApplication1." + _fruitname);
return fruitB;
// 方式三:使用 Activator 类
Fruit fruitC = (Fruit)Activator.CreateInstance(Type.GetType("ConsoleApplication1." + _fruitname, false, true));
return fruitC;
示例的全部代码如下:
using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
//抽象类可以继承抽象类
namespace ConsoleApplication1
{
  class Fruit
  {
    //定义虚方法
    public virtual void Eating()
    {
      Console.WriteLine("水果有各种吃法。。。");
    }
  }
  //水果工厂
  class FruitFactory
  {
    //生成水果
    public Fruit CreateFruit(string _fruitname)
    {
      //不使用反射的做法如下:
      //if ("Apple" == _fruitname)
      //{
      //  return new Apple();
      //}
      //else if ("Banana" == _fruitname)
      //{
      //  return new Banana();
      //}
      //else if ("Orange" == _fruitname)
      //{
      //  return new Orange();
      //}
      //else
      //{
      //  throw new Exception("您指定的水果不生产!");
      //}
      //获得当前程序的命名空间
      string strNamespace = Assembly.GetExecutingAssembly().GetName().Name;
      //调用方法一:使用 Type 类
      //Type type = Type.GetType("ConsoleApplication1." + _fruitname);
      //ConstructorInfo ctorInfo = type.GetConstructor(System.Type.EmptyTypes);
      //// Invoke()方法:返回与构造函数关联的类的实例。
      //Fruit fruitA = (Fruit)ctorInfo.Invoke(new object[0]);
      //return fruitA;
      //调用方法二:使用 Assembly 类
      //Assembly myAssembly = Assembly.GetExecutingAssembly();
      //Fruit fruitB = (Fruit)myAssembly.CreateInstance("ConsoleApplication1." + _fruitname);
      //return fruitB;
      //调用方法三:使用 Activator 类
      Fruit fruitC = (Fruit)Activator.CreateInstance(Type.GetType("ConsoleApplication1." + _fruitname, false, true));
      return fruitC;
    }
  }
  class Banana : Fruit
  {
    public override void Eating()
    {
      Console.WriteLine("香蕉扒皮吃。。。");
    }
  }
  class Orange : Fruit
  {
    public override void Eating()
    {
      Console.WriteLine("橘子剥皮吃。。。");
    }
  }
  class Apple : Fruit
  {
    public new void Eating()
    {
      Console.WriteLine("苹果洗了吃。。。");
    }
    //public override void Eating()
    //{
    //  Console.WriteLine("苹果洗了吃。。。");
    //}
  }
  class Program
  {
    static void Main(string[] args)
    {
      FruitFactory ff = new FruitFactory();
      //打印(来自父类的):水果有各种吃法。。。
      Fruit fA = ff.CreateFruit("Apple");
      fA.Eating();
      //打印(来自子类的):苹果洗了吃。。。
      Apple apple = ff.CreateFruit("Apple") as Apple;
      apple.Eating();
      Fruit fB = ff.CreateFruit("Banana");
      fB.Eating();
      Fruit fC = ff.CreateFruit("Orange");
      fC.Eating();
    }
  }
}

希望本文所述对大家的C#程序设计有所帮助。

相关文章

  • 详细解析C#多线程同步事件及等待句柄

    详细解析C#多线程同步事件及等待句柄

    本篇文章主要介绍了C#多线程同步事件及等待句柄,希望通过本篇的介绍能对常见的线程同步方法有一个整体的认识,有需要的可以了解一下。
    2016-11-11
  • C# byte数组与Image相互转换的方法

    C# byte数组与Image相互转换的方法

    这篇文章介绍了C# byte数组与Image相互转换的方法,有需要的朋友可以参考一下
    2013-10-10
  • C#中Shear的用法实例

    C#中Shear的用法实例

    这篇文章主要介绍了C#中Shear的用法,实例分析了C#中使用Matrix实现Shear剪切变换的相关技巧,需要的朋友可以参考下
    2015-06-06
  • WinFrom中label背景透明的实现方法

    WinFrom中label背景透明的实现方法

    这篇文章主要介绍了WinFrom中label背景透明的实现方法,方法简单实用,是C#程序设计中非常实用的技巧,需要的朋友可以参考下
    2014-09-09
  • C#中的lock()如何使用

    C#中的lock()如何使用

    在C#中,lock 关键字用于确保某个代码块在任何时刻只被一个线程访问,本文主要介绍了C#中的lock()如何使用,具有一定的参考价值,感兴趣的可以了解一下
    2024-01-01
  • Unity UGUI的Canvas画布组件使用示例详解

    Unity UGUI的Canvas画布组件使用示例详解

    这篇文章主要介绍了Unity UGUI的Canvas画布组件使用示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-07-07
  • C#生成exe可执行文件的常用方法

    C#生成exe可执行文件的常用方法

    这篇文章主要介绍了C#生成exe可执行文件的两种常用方法,通过图文结合的方式讲解的非常详细,对大家的学习或工作有一定的帮助,需要的朋友可以参考下
    2024-07-07
  • WPF实现窗体中的悬浮按钮

    WPF实现窗体中的悬浮按钮

    这篇文章主要为大家详细介绍了WPF实现窗体中的悬浮按钮,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-11-11
  • DevExpress根据条件设置GridControl RepositoryItem是否可编辑

    DevExpress根据条件设置GridControl RepositoryItem是否可编辑

    这篇文章主要介绍了DevExpress根据条件设置GridControl RepositoryItem是否可编辑,需要的朋友可以参考下
    2014-08-08
  • 在WPF中实现全局快捷键功能

    在WPF中实现全局快捷键功能

    这篇文章介绍了在WPF中实现全局快捷键功能的方法,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2022-06-06

最新评论