3

我试图向某人展示在他们创造的疯狂情况下使用接口。它们在列表中有几个不相关的对象,并且需要对每个对象中的两个字符串属性执行操作。我要指出的是,如果他们将属性定义为接口的一部分,他们可以使用接口对象作为作用于它的方法参数的类型;例如:

void PrintProperties(IEnumerable<ISpecialProperties> list)
{
    foreach (var item in list)
    {
        Console.WriteLine("{0} {1}", item.Prop1, item.Prop2);
    }
}

这似乎一切都很好,但是需要处理的列表没有(也不应该)使用接口作为类型参数声明。但是,您似乎无法转换为不同的类型参数。例如,这失败了,我不明白为什么:

using System;
using System.Collections.Generic;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            List<Test> myList = new List<Test>();
            for (int i = 0; i < 5; i++)
            {
                myList.Add(new Test());
            }

            PrintList((IEnumerable<IDoSomething>)myList);
        }

        static void PrintList(IEnumerable<IDoSomething> list)
        {
            foreach (IDoSomething item in list)
            {
                item.DoSomething();
            }
        }
    }

    interface IDoSomething
    {
        void DoSomething();
    }

    public class Test : IDoSomething
    {
        public void DoSomething()
        {
            Console.WriteLine("Test did it!");
        }
    }
}

可以使用该Enumerable.Cast<T>成员来执行此操作,但我一直在寻找一种可能也适用于 .NET 2.0 的方法。看起来这应该是可能的;我错过了什么?

4

5 回答 5

5

问题在于方法,而不是如何调用......

void PrintProperties<SP>(IEnumerable<SP> list) where SP: ISpecialProperties
{
    foreach (var item in list)
    {
        Console.WriteLine("{0} {1}", item.Prop1, item.Prop2);
    }
}
于 2008-10-09T19:23:35.027 回答
5

它失败的原因是泛型在 C# 中还没有表现出差异。

但是,对于 IEnumerable<T> 的修复,请尝试以下操作:

public static IEnumerable<TBase> SafeConvert<TBase, TDerived>(IEnumerable<TDerived> source)
    where TDerived : TBase
{
    foreach (TDerived element in source)
    {
        yield return element; // Implicit conversion to TBase
    }
}

编辑:对于这种特殊情况,另一个现有的答案比上面的要好,但是如果您确实需要“转换”序列,我会把它留在这里作为一个普遍有用的东西。

于 2008-10-09T19:26:02.573 回答
1

您可以foreach在您拥有的列表上使用 a 。foreach做了一个内置的演员表。因此,如果您将循环从函数中取出,您可以编写类似的内容

List<Test> myList = new List<Test>();
for (int i = 0; i < 5; i++)
{
   myList.Add(new Test());
}

foreach (IDoSomething item in myList)
{
   item.DoSomething();
}
于 2008-10-09T19:28:09.917 回答
1

您想要的称为“接口协方差”,目前 C# 不支持。您可以在Eric Lippert 的博客上了解它。

于 2008-10-09T20:34:25.430 回答
-1

这并不能回答您的问题(或者我猜是练习的重点:),但在这种情况下,我只是通过将特殊属性附加到感兴趣的属性来使用反射。

于 2008-10-09T19:29:22.660 回答