VisualC#的for循环中使用变量的习惯,还是我遗漏了什么?

在 python 中,我已经养成了在“范围”之外的 for 循环中使用变量的习惯。例如:

l = ["one", "two", "three"]
for item in l:
    if item == "one":
        j = item
print(j)

你不能在 C# 中完全做到这一点。以下是我进行的几次尝试:

第一次尝试

我声明了一个string 类型的变量j,在foreach 循环范围内将所选项目分配给它,然后在我退出foreach 循环范围后重新引用它:

using System;
using System.Collections.Generic;
class Program
{
    static void Main()
    {
        List l = new List { "one", "two", "three" };

        string j;       
        foreach (string item in l)
        {
            if (item == "one")
            {
                j = item;
            }
        }
        Console.WriteLine(j);
    }
}

编译器抛出错误:

Microsoft (R) Visual C# 编译器版本 4.2.0-4.22252.24 (47cdc16a)版权所有 (C) 微软公司。保留所有权利。

test.cs(19,27): error CS0165: Use of unassigned local variable ‘j’

第二次尝试

将声明移到foreach 内也不好,因为在作用域之外根本无法识别变量:

using System;

using System.Collections.Generic;
class Program
{
    static void Main()
    {
        List l = new List { "one", "two", "three" };
        foreach (string item in l)
        {
            string j;
            if (item == "one")
            {
                j = item;
            }
        }
        Console.WriteLine(j);
    }

图片[1]-VisualC#的for循环中使用变量的习惯,还是我遗漏了什么?-唐朝资源网

}

编译器抛出以下错误:

Microsoft (R) Visual C# 编译器版本 4.2.0-4.22252.24 (47cdc16a)版权所有 (C) 微软公司。保留所有权利。

test.cs(20,27): 错误 CS0103: 名称 ‘j’ 在当前上下文中不存在

第三次尝试:

将声明移动到最内层范围并将值分配给变量会导致与第二次尝试类似的问题:

using System;
using System.Collections.Generic;
class Program
{
    static void Main()
    {
        List l = new List { "one", "two", "three" };
        foreach (string item in l)
        {
            if (item == "one")

            {
                string j = item;
            }
        }
        Console.WriteLine(j);
    }
}

编译器报错,因为在第 19 行变量 j 无法识别。

Microsoft (R) Visual C# 编译器版本 4.2.0-4.22252.24 (47cdc16a)版权所有 (C) 微软公司。保留所有权利。

test.cs(19,27): error CS0103: name ‘j’ does not exist in the current context

解决办法

一种可能的解决方案如下:

using System;
using System.Collections.Generic;
class Program
{
    static void Main()

图片[2]-VisualC#的for循环中使用变量的习惯,还是我遗漏了什么?-唐朝资源网

{ List l = new List { "one", "two", "three" }; string j = "test"; foreach (string item in l) { if (item == "one") { j = item; } } Console.WriteLine(j); } }

但我发现这很丑陋并且缺乏鲁棒性,因为我必须为j 分配一些虚拟值。例如,字符串 “test” 可能会被我的程序的其他部分识别,并使其以意想不到的方式运行。

问题

是否有一种优雅的替代方法可以在 C# 中实现这种行为,还是我遗漏了什么?

© 版权声明
THE END
喜欢就支持一下吧
点赞286赞赏 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容