Java View all facts Glossary Help |
| syntactic unit > symbol > operator > assignment operator |
| assignment operator comparison table | ||||||||
| Subject | cause | have syntax | reassign | is a kind of | have equivalent | return | is an instance of | indicate |
|---|---|---|---|---|---|---|---|---|
| %= | op1 %= op2 op1 = op1 % op2 | a value called its result | assignment operator | |||||
| &= | op1 &= op2 op1 = op1 & op2 | a value called its result | assignment operator | |||||
| <<= | op1 <<= op2 op1 = op1 << op2 | a value called its result | assignment operator | |||||
| = | the same value as the value assigned | assignment operator | assignment | |||||
| >>= | op1 >>= op2 op1 = op1 >> op2 | a value called its result | assignment operator | |||||
| >>>= | op1 >>>= op2 op1 = op1 >>> op2 | a value called its result | assignment operator | |||||
| augmented assignment operator | an expression written using it to execute faster than the corresponding expression written without it | variable name operator= expression | a variable to a value obtained through a combination of the variable's current value with an expression's value | assignment operator | a value called its result | |||
| caret= | op1 caret= op2 op1 = op1 caret op2 | a value called its result | assignment operator | |||||
| |= | op1= op2 | a value called its result | assignment operator |
Next operator: binary operator Up: operator Previous operator: arithmetic operator