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.
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
Post a Comment
Post Your Valuable Comments