什么时候应该在C#中使用as关键字?

前端之家收集整理的这篇文章主要介绍了什么时候应该在C#中使用as关键字?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当您想要更改大多数时间的类型时,您只需要使用传统的演员.
var value = (string)dictionary[key];

这是好的,因为:

这是快的
>如果有什么不对,它会抱怨(而不是给对象是空的异常)

那么什么是使用的一个很好的例子,因为我真的不能真正发现或想到适合它的东西?

注意:实际上,我认为有时候编译器会阻止使用作品(泛型相关?)的演员.

解决方法

使用,当它对一个对象不是你想要的类型有效,并且你想采取不同的方式,如果它是.例如,在一些伪代码中:
foreach (Control control in foo)
{
    // Do something with every control...

    ContainerControl container = control as ContainerControl;
    if (container != null)
    {
        Applytochildren(container);
    }
}

或者LINQ to Objects中的优化(很多例子):

public static int Count<T>(this IEnumerable<T> source)
{
    IList list = source as IList;
    if (list != null)
    {
        return list.Count;
    }
    IList<T> genericList = source as IList<T>;
    if (genericList != null)
    {
        return genericList.Count;
    }

    // Okay,we'll do things the slow way...
    int result = 0;
    using (var iterator = source.GetEnumerator())
    {
        while (iterator.MoveNext())
        {
            result++;
        }
    }
    return result;
}

所以使用像一个是一个演员.以前几乎总是使用无效检查.

原文链接:https://www.f2er.com/csharp/95506.html

猜你在找的C#相关文章