如何返回一个空的IEnumerable?


329

鉴于以下代码和此问题给出的建议,我决定修改此原始方法,并询问IEnumarable中是否有任何值返回它,如果不返回没有值的IEnumerable。

方法如下:

public IEnumerable<Friend> FindFriends()
        {
            //Many thanks to Rex-M for his help with this one.
            //https://stackoverflow.com/users/67/rex-m

            return doc.Descendants("user").Select(user => new Friend
            {
                ID = user.Element("id").Value,
                Name = user.Element("name").Value,
                URL = user.Element("url").Value,
                Photo = user.Element("photo").Value
            });
        }

由于所有内容都在return语句中,所以我不知道该怎么做。这样的事情行吗?

public IEnumerable<Friend> FindFriends()
        {
            //Many thanks to Rex-M for his help with this one.
            //https://stackoverflow.com/users/67/rex-m
            if (userExists)
            {
                return doc.Descendants("user").Select(user => new Friend
                {
                    ID = user.Element("id").Value,
                    Name = user.Element("name").Value,
                    URL = user.Element("url").Value,
                    Photo = user.Element("photo").Value
                });
            }
            else
            { 
                return new IEnumerable<Friend>();
            }
        }

上面的方法不起作用,实际上它不应该起作用;我只是觉得它说明了我的意图。我觉得我应该指定代码无效,因为您不能创建抽象类的实例。

这是调用代码,我不希望它在任何时候接收到一个空IEnumerable:

private void SetUserFriends(IEnumerable<Friend> list)
        {
            int x = 40;
            int y = 3;


            foreach (Friend friend in list)
            {
                FriendControl control = new FriendControl();
                control.ID = friend.ID;
                control.URL = friend.URL;
                control.SetID(friend.ID);
                control.SetName(friend.Name);
                control.SetImage(friend.Photo);

                control.Location = new Point(x, y);
                panel2.Controls.Add(control);

                y = y + control.Height + 4;
            } 

        }

感谢您的时间。


2
在这里查看代码,您应该使用yield return和yield break。
克里斯·马里西奇

Answers:


575

您可以使用list ?? Enumerable.Empty<Friend>(),或获得FindFriends退货Enumerable.Empty<Friend>()


7
如果他返回,它将改变某些东西,new List<Friend>()因为IEnumerable<Friend>从该方法返回时它将被强制转换为?
莎拉·

73
new List<Friend>()这是比较昂贵的操作,因为它将创建一个列表实例(并在此过程中为其分配内存)
Igor Pashchuk 2011年


105

对我来说,最优雅的方式是 yield break


8
但这就是如果您使用收益率回报,不是吗?
Svish

15
+1,因为他的代码正确使用了IEnumerable的使用方式
Chris Marisic 2010年

6
请原谅我对这个问题的无知,但请您说明一下在这种情况下如何使用减产?我仅在for循环中看到过示例,但对我而言并没有描绘清楚的画面。
塞尔吉奥·塔皮亚

用示例更新了答案。我同意,这确实是最优雅的做法。:)
Johny Skovdal

4
编辑得到拒绝了同行评审,所以这里我说的是@Pyritie的例子-格式虽然被弄乱了,所以我把它添加到pastebin.com/X9Z49Vq1还有:public IEnumerable<Friend> FindFriends() { if(!userExists) yield break; foreach(var descendant in doc.Descendants("user").Select(user => new Friend { ID = user.Element("id").Value, Name = user.Element("name").Value, URL = user.Element("url").Value, Photo = user.Element("photo").Value })) { yield return descendant; } }
佐尼Skovdal

8

当然,这只是个人喜好问题,但是我将使用yield return编写此函数:

public IEnumerable<Friend> FindFriends()
{
    //Many thanks to Rex-M for his help with this one.
    //http://stackoverflow.com/users/67/rex-m
    if (userExists)
    {
        foreach(var user in doc.Descendants("user"))
        {
            yield return new Friend
                {
                    ID = user.Element("id").Value,
                    Name = user.Element("name").Value,
                    URL = user.Element("url").Value,
                    Photo = user.Element("photo").Value
                }
        }
    }
}

1

我认为最简单的方法是

 return new Friend[0];

返回的要求仅仅是该方法返回一个实现的对象IEnumerable<Friend>。只要在两种情况下都实现IEnumerable,则在不同情况下返回两种不同对象的事实是无关紧要的。


5
Enumerable.Empty <T>实际上返回一个T的空数组(T [0]),其优点是可以重复使用相同的空数组。请注意,这种方法对于非空数组不是理想的,因为可以修改元素(但是无法调整数组的大小,调整大小涉及创建新实例)。
弗朗西斯·加涅

0
public IEnumerable<Friend> FindFriends()
{
    return userExists ? doc.Descendants("user").Select(user => new Friend
        {
            ID = user.Element("id").Value,
            Name = user.Element("name").Value,
            URL = user.Element("url").Value,
            Photo = user.Element("photo").Value
        }): new List<Friend>();
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.