|
Do you need help with your Java programming?
Click here for instant help with your Java code. |
Chapter 4: Java Expressions and Operators
An expression in Java may result in three possible things: - A variable - A value - Nothing So that could look like: aValue (variable) 5.6 (a value) The last one that doesn't return anything could be a call to a method that returns void. Expressions are often linked to one and other with operators and form larger expressions, like: 1 + 2 + 3; The + sign is an operator. Read more about different operators further ahead. |
| Previous | Next | |
Tutorial Home | ||
| Do you know your Java? | |
| Take a Ten-Question-Java-Quiz! | |
Search for code examples on this site
