警告:永远不会显式引用标签[number]

时间:2014-04-08 16:57:18

标签: java warnings

boolean t = true;
first:
{
    second:
    {
        third:
        {
            System.out.println("Before the break");
            if (t) {
                break second;
            }
            System.out.println("This wont execute");
        }
        System.out.println("Neither this one");
    }
    System.out.println("this will execute");

}

在代码中," first"之前"第三"显示警告:标签第一个/第三个从未明确引用。 ypu可以告诉为什么会出现这个警告吗?

1 个答案:

答案 0 :(得分:3)

这只是因为你从来没有在你的代码中引用它们

按照

提及second
if(t) break second;