没有声明。为什么不?

时间:2019-07-05 05:17:13

标签: java conditional-operator

当我尝试编译以下Java程序时:

Hello World!

我得到了错误:

public class MyClass 
{
    static int f1() { return 10; }
    static int f2() { return 20; }

    public static void main(String args[])
    {
        int x = 10;
        (x <= 10) ? f1() : f2();
    }
}

Java语言定义将语句视为赋值,递增/递减,方法调用或对象创建之一。我错误的“声明”涉及方法调用,因此应该起作用。实际上,如果我只有一条语句:

/MyClass.java:9: error: not a statement
        (x <= 10) ? f1() : f2();
                  ^

编译器在没有任何抱怨的情况下编译程序。同样,如果我将最后一行更改为:

f1();

那么,一切都是笨拙的。

作为最后的一条信息,C和C ++都无法吸引眼球:

int y = (x <= 10) ? f1() : f2();

1 个答案:

答案 0 :(得分:2)

在表达式中使用三元运算符。对于语句,可以使用if语句。这就是语法的定义方式。期间。