12

在 C# 中,该switch语句不允许 case 跨越值的范围。我不喜欢为此目的使用 if-else 循环的想法,那么还有其他方法可以检查 C# 中的数字范围吗?

4

7 回答 7

16

您可以HashTable分别使用 aDictionary来创建 的映射Condition => Action

例子:

class Programm
{
    static void Main()
    {
        var myNum = 12;

        var cases = new Dictionary<Func<int, bool>, Action>
        { 
            { x => x < 3 ,    () => Console.WriteLine("Smaller than 3")   } ,
            { x => x < 30 ,   () => Console.WriteLine("Smaller than 30")  } ,
            { x => x < 300 ,  () => Console.WriteLine("Smaller than 300") } 
        };

        cases.First(kvp => kvp.Key(myNum)).Value();
    }
}

这种技术是一种通用的替代方法switch,尤其是当操作仅包含一行时(如方法调用)。

如果你喜欢类型别名:

using Int32Condition = System.Collections.Generic.Dictionary<System.Func<System.Int32, System.Boolean>, System.Action>;
...
    var cases = new Int32Condition()
    { 
        { x => x < 3 ,    () => Console.WriteLine("Smaller than 3")   } ,
        { x => x < 30 ,   () => Console.WriteLine("Smaller than 30")  } ,
        { x => x < 300 ,  () => Console.WriteLine("Smaller than 300") } 
    };
于 2012-07-05T07:08:06.567 回答
5

没有。当然,如果范围很小,您可以使用

case 4:
case 5:
case 6:
   // blah
   break;

方法,但除此之外:没有。使用if/ else

于 2012-07-05T06:56:50.763 回答
4

如果范围的间隔是恒定的,您可以尝试

        int num = 11;
        int range = (num - 1) / 10; //here interval is 10
        switch (range)
        {
            case 0:
                Console.Write("1-10");
                break; // 1-10
            case 1:
                Console.Write("11-20");
                break; // 11-20
            // etc...
        }

输出将是:"11-20"
如果间隔是可变的,则使用if/else

于 2012-07-05T06:58:22.267 回答
1

不,至少没有比这更美丽的了。

也没有 C# 3.5 只有 .NET 3.5 和 C# 3.0

于 2012-07-05T06:57:28.150 回答
1

尝试这样的事情

 private void ExecuteInRange(Dictionary<Range,Action<int>> ranges)
    {
        foreach (var range in ranges)
        {
            if (range.Key.Value < range.Key.Max && range.Key.Value > range.Key.Max)
                range.Value(range.Key.Value);
        }
    }


public class Range
{
    public int Min { get; set; }
    public int Max { get; set; }
    public int Value { get; set; }
}
于 2012-07-05T07:10:43.767 回答
1
        int b;
        b = Int32.Parse(textBox1.Text);

        int ans = (100-b)/3; //the 3 represents the interval
        //100 represents the last number


        switch(ans)
        {

           case 0:
                MessageBox.Show("98 to 100");
           break;

           case 1:
                MessageBox.Show("95 to 97");
           break;

           case 2:
                MessageBox.Show("92 to 94");
           break;

           case 3:
                MessageBox.Show("89 to 91");
           break;

           case 4:
                MessageBox.Show("86 to 88");
           break;

           default:
                MessageBox.Show("out of range");
           break;
于 2013-06-24T13:15:25.280 回答
-1

一种嵌套简写 if-else 的东西有效,而且很干净。

myModel.Value = modelResult >= 20 ? 5 : modelResult >= 14 ? 4 : modelResult >= 5 ? 3 : modelResult >= 2 ? 2 : modelResult == 1 ? 1 : 0;
于 2013-06-21T14:46:07.310 回答