Prefix decrement example

class Operators {
    public static void main(String[] args) {
        byte a = 2;
        byte b = --a;
       
        System.out.println("a = " + a + ", b = " + b);
    }
}

In the same way you can check for prefix and postfix increment operators.

Comments

Popular posts from this blog

Zeller's Congruence

Property Event-Delegation

Method with variable arguments