Postfix decrement Example

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

Comments

Popular posts from this blog

Zeller's Congruence

Property Event-Delegation

Method with variable arguments