1

我有一个使用这样的泛型的类型

public class Stack<T> {
    public void MyMethod() ...
}

在另一个类中,我想为任何 T 编写一个采用这种 Stack 类型的方法:

public class MyClass  {
    public void MyMethod(Stack<T> stack) {
        stack.MyMethod();
    }
}

那可能吗?

4

4 回答 4

8

使类或方法成为MyClass泛型。

通用类:

public class MyClass<T>  {
    public void MyMethod(Stack<T> stack) {
        stack.MyMethod();
    }
}

通用方法:

public class MyClass  {
    public void MyMethod<T>(Stack<T> stack) {
        stack.MyMethod();
    }
}

哪个合适取决于您希望T变量的范围。如果单个实例MyClass应该能够MyMethod使用几种不同类型的堆栈进行调用,那么该方法应该是通用的。如果单个实例MyClass应该要求所有调用MyMethod传递相同类型的堆栈,那么整个类应该是通用的。

于 2013-10-01T18:32:23.447 回答
6

任何一个:

public class MyClass 
{
  public void MyMethod<T>(Stack<T> stack) 
  {
     stack.MyMethod();
  }
}

或者

public class MyClass<T>  
{
  public void MyMethod(Stack<T> stack) 
  {
     stack.MyMethod();
  }
}

是正确的。

于 2013-10-01T18:32:31.723 回答
1

有两种泛型:

一 = 通用方法

二 = 通用类

例如 :

using System;

class Test<T>
{
    T _value;

    public Test(T t)
    {
    // The field has the same type as the parameter.
        this._value = t;
    }

    public void Write()
    {
        Console.WriteLine(this._value);
    }
}

class Program
{
    static void Main()
    {
    // Use the generic type Test with an int type parameter.
    Test<int> test1 = new Test<int>(5);
    // Call the Write method.
    test1.Write();

    // Use the generic type Test with a string type parameter.
    Test<string> test2 = new Test<string>("cat");
    test2.Write();
    }
}

你可以constraints在泛型类中设置一个。

例如

using System;
using System.Data;

/// <summary>
/// Requires type parameter that implements interface IEnumerable.
/// </summary>
class Ruby<T> where T : IDisposable
{
}

/// <summary>
/// Requires type parameter that is a struct.
/// </summary>
class Python<T> where T : struct
{
}

/// <summary>
/// Requires type parameter that is a reference type with a constructor.
/// </summary>
class Perl<V> where V : class, new()
{
}

class Program
{
    static void Main()
    {
        // DataTable implements IDisposable so it can be used with Ruby.
        Ruby<DataTable> ruby = new Ruby<DataTable>();

    // Int is a struct (ValueType) so it can be used with Python.
    Python<int> python = new Python<int>();

    // Program is a class with a parameterless constructor (implicit)
    // ... so it can be used with Perl.
    Perl<Program> perl = new Perl<Program>();
    }
}

对于泛型方法

using System;
using System.Collections.Generic;

class Program
{
    static List<T> GetInitializedList<T>(T value, int count)
        {
        // This generic method returns a List with ten elements initialized.
        // ... It uses a type parameter.
        // ... It uses the "open type" T.
        List<T> list = new List<T>();
        for (int i = 0; i < count; i++)
        {
            list.Add(value);
        }
        return list;
        }

    static void Main()
        {
        // Use the generic method.
        // ... Specifying the type parameter is optional here.
        // ... Then print the results.
        List<bool> list1 = GetInitializedList(true, 5);
        List<string> list2 = GetInitializedList<string>("Perls", 3);
        foreach (bool value in list1)
        {
            Console.WriteLine(value);
        }
        foreach (string value in list2)
        {
            Console.WriteLine(value);
        }
        }
    }

我的答案的资源是这些链接。C# 泛型类 泛型方法

于 2013-10-02T16:08:59.040 回答
0

是的,您可以,但您必须“通知”其他班级您正在使用哪种类型,例如:

public class StackType<t>
{
    public void Generate()
    {
    }
}

public class MyClass<T>
{
    public MyClass(StackType<T> stack)
    {
        stack.Generate();
    }
}
于 2013-10-01T18:36:25.557 回答