Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I've read Oracle's expressions tutorial and couldn't understand this.

It is well known that the following line of code is valid Java syntax:

new Object();

However, when I try this with a primitive expression:

(3 + 2);

Eclipse is showing a compile error of "The left-hand side of an assignment must be a variable".

This is true not only for primitives, but also for String literals:

"arbitraryString";

So what is the rule for an unassigned expression to be valid as a Java line of code?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
294 views
Welcome To Ask or Share your Answers For Others

1 Answer

The rule is in the Java Language Specification:

Certain kinds of expressions may be used as statements by following them with semicolons.

ExpressionStatement:

  • StatementExpression ;

StatementExpression:

  • Assignment
  • PreIncrementExpression
  • PreDecrementExpression
  • PostIncrementExpression
  • PostDecrementExpression
  • MethodInvocation
  • ClassInstanceCreationExpression

You see that a constructor invocation is a statement. But a String literal or mathematical expression is not.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...