Java – Increment and Decrement Operator2 min read

The ++ and the – – are Java’s increment and decrement operators. ++ is used to increase the value by 1 and – – is used to decrease the value by 1. There are two kinds of Increment and Decrement Operators.

They are:

  • Post-Increment or Post-Decrement:
    First, the value is used for operation and then incremented or decremented. Represented like a++ or a–.
  • Pre-Increment Pre-Decrement:
    Here First the value is incremented or decremented then used for the operation. Represented like ++a or – –a.

Example on Increment and Decrement Operator in java

Output: After execution following result will be displayed.

Limitations of Increment and Decrement Operators:

Increment and decrement operators can only be applied to variables but not on constant values. If we apply on canstants then we will get a compile-time error.


Example of Pre increment and Post increment in java:

The above shows the use of a++ and ++a and at the end, if you print the value of a, you will get 7 as the value of a.

Pre-increment: (++a)

The major point to remember is that ++a increments the value and immediately returns it.

Post-increment: (a++)

a++ also increments the value but returns an unchanged value of the variable. It does not return the value immediately but if it is executed on the next statement then a new value is used.

Example of Pre decrement and Post decrement in java:

Pre-decrement: (a)

The major point to remember is that ––a decrements the value and immediately returns it.

Post-decrement: (a)

a–– also decrements the value but returns an unchanged value of the variable. It does not return the value immediately but if it is executed on the next statement then a new value is used.


MORE

Java Program to find the sum of the Largest Forward Diagonal

in this tutorial, we will write a java program to find the sum of the Largest Forward Diagonal in an Arraylist (matrix). Java Program to …

C Program to search an element in an array using Pointers

A separate function( search_function()) will be created where the array pointer will be declared and the searched element along with the size of an array …

C Program to find the sum of the digits of a number using recursion function

This C program calculates the sum of digits of a given number using recursion. Here’s a concise explanation: Function Definition: sumDigits(int n) This function calculates …

C program to find factorial of a number using Ternary operator with Recursion

Recursion refers to the function calling itself directly or in a cycle. Before we begin, you should have the knowledge of following in C Programming: …

C Program to Add Two Numbers Using Call by Reference

The program takes the two numbers from the user and passes the reference to the function where the sum is calculated. You may go through …

Find the output ab, cd, ef, g for the input a,b,c,d,e,f,g in Javascript and Python

In this tutorial, we will write a program to find a pairs of elements from an array such that for the input [a,b,c,d,e,f,g] we will …