Which has a larger bytecode size or the same in Java?
if (a > b) a = b;
vs
if (a > b) {
a = b;
}
Which has a larger bytecode size or the same in Java?
if (a > b) a = b;
vs
if (a > b) {
a = b;
}
These compile to precisely the same thing.