比较类型时无法访问代码

时间:2016-02-01 16:21:43

标签: c# if-statement types compare unreachable-code

问题:我的其他声明无法访问,我做错了什么?

非常非常新的编程,我正在尝试比较类型,例如,当我要求整数时,人们无法输入字符串。

我的代码可能非常糟糕,如果我能得到一个标题该怎么做以及为什么if-argument跳过其他部分我真的很开心!

谢谢!

class Program
{
    static void Main(string[] args)
    {            
        int integer = 0;

        start:
        Console.WriteLine("How old are you?: ");
        int svar = int.Parse(Console.ReadLine());

        Utility.CompareTypes(svar, integer);

            if (true)
        {
            Console.WriteLine("Thanks");

        }
            else
            {
                Console.WriteLine("You have to enter a number!");
                goto start;
            }

    }
}

class Utility
{

    public static bool CompareTypes<T01, T02>(T01 type01, T02 type02)
    {
        return typeof(T01).Equals (typeof(T02));
    }

}

:C

1 个答案:

答案 0 :(得分:4)

这不是代码问题,而是逻辑问题......

if (true) // <--- this will ALWAYS be true
{
    Console.WriteLine("Thanks");
}
else // <--- therefore this will NEVER happen
{
    Console.WriteLine("You have to enter a number!");
    goto start;
}

由于您的else块永远不可能在任何逻辑环境下执行,因此整个代码块可以简化为:

Console.WriteLine("Thanks");

为了执行else块,if语句中检查的条件需要为false。您目前没有检查任何实际情况,只是一个硬编码的true值。

也许您打算使用上一行代码的结果?像这样:

var typesAreSame = Utility.CompareTypes(svar, integer);

if (typesAreSame)
{
    //...