当前位置:  开发笔记 > 编程语言 > 正文

C#界面问题

如何解决《C#界面问题》经验,为你挑选了1个好方法。

将对象传递给实现特定接口的函数是否有成本,其中函数只接受该接口?喜欢:

Change (IEnumerable collection)

我通过:

List
LinkedList
CustomCollection

所有这些都实现了IEnumerable.但是当你将其中的任何一个传递给Change方法时,它们是否会被转换为IEnumerable,因此有一个演员阵容,但也有失去他们独特方法的问题等等?



1> Andrew Hare..:

不,从那时起就没有演员阵容List IS-A IEnumerable.这是使用不需要强制转换的多态.

编辑:这是一个例子:

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        foo(new List());
    }

    static void foo(IEnumerable list) { }
}

IL for Main是:

.method private hidebysig static void Main() cil managed
{
    .entrypoint
    .maxstack 8
    L_0000: nop 
    L_0001: newobj instance void [mscorlib]System.Collections.Generic.List`1::.ctor()
    L_0006: call void Program::foo(class [mscorlib]System.Collections.Generic.IEnumerable`1)
    L_000b: nop 
    L_000c: ret 
}

正如你所看到的那样,没有涉及铸造.将实例List推入堆栈,然后foo立即调用它们.

推荐阅读
k78283381
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有