Java - Assignment: =

The assignment operator is used to assign a value to a variable. it can be used for any data type with the only condition that the first parameter (left side) must be a value receiver, for example a variable. depending on the programming language can be different terms for the assignment of values to the variables, for example depending on the type.

=

Description

var =expression;
Used keywords: =

Input


Output

Examples

Java

Assignment the possible of use:
x = 1.234;         // x = 1.234
y = x * 3.14;      // y = 3.87476
if (y<5)
   y = y/ 3.14;    // y = 1.234

Java

Other pieces of example codes:
x = 0xf & 0xff;
y =(double)(x * y);
i = i-5;
a = 5 < 10;
a2 = !true;
a = 4 >= 2;
Languages: en hu cz sk