Code Inspection: Result of increment or decrement used
Configure inspections: Settings | Editor | Inspections
Show intention actions: AltEnter
Reports an increment (++
) or decrement (--
) expression where the result of the assignment is used in a containing expression. Such assignments can result in confusion due to the order of operations, as evaluation of the assignment may affect the outer expression in unexpected ways. Example: var a = b++
Place the caret at the highlighted line and press AltEnter or click
.
Click the arrow next to the inspection you want to suppress and select the necessary suppress action.