所有代码都在 Java 中。
public class TestLocal
{
public static void main(String [] args)
{
int x;
if (args[0] != null)
{ // assume you know this will
// always be true
x = 7; // statement will run
}
int y = x; // the compiler will choke here
}
}
所以,我的问题是为什么编译器会在这里窒息?它是否绕过 if 语句(这看起来很可怕......)如果我在 if 语句块之外初始化 x 则编译器不会抱怨,如以下代码所示:
public class TestLocal
{
public static void main(String [] args)
{
int x;
x = 7; // compiler is happy now..:)
if (args[0] != null)
{ // assume you know this will
// always be true
// statement will run
}
int y = x; // the compiler not complain here now.
}
}
为什么编译器会出现如此可怕的行为?