C#类型的方法重载

前端之家收集整理的这篇文章主要介绍了C#类型的方法重载前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道以下是否可能.创建接受匿名类型(string,int,decimal,customObject等)的类,然后重载方法根据Type执行不同的操作.例
class TestClass<T>
{
  public void GetName<string>()
  {
      //do work knowing that the type is a string    
  }

  public string GetName<int>()
  {
      //do work knowing that the type is an int

  } 

  public string GetName<int>(int addNumber)
  {
      //do work knowing that the type is an int (overloaded)    
  } 

  public string GetName<DateTime>()
  {
      //do work knowing that the type is a DateTime

  } 

  public string GetName<customObject>()
  {
      //do work knowing that the type is a customObject type    
  }

}

所以现在我可以调用GetName方法,因为我已经在初始化对象时传入了类型,所以找到并执行正确的方法.

TestClass foo = new TestClass<int>();

//executes the second method because that's the only one with a "int" type
foo.GetName();

这是可能还是我只是在做梦?

@H_404_10@

解决方法

你想做的是这样可能的:
class TestClass<T>
{
   public string GetName<T>()
   {
      Type typeOfT = typeof(T);
      if(typeOfT == typeof(string))
      {
          //do string stuff
      }
   }
}

尽管这是可能的,但是你也是打败仿制药的目的.泛型点是当类型无关紧要时,所以在这种情况下我不认为泛型是适当的.

@H_404_10@ @H_404_10@ 原文链接:https://www.f2er.com/csharp/94787.html

猜你在找的C#相关文章