Ternary operator
Source code
1
class
TernaryOperator {
2
3
int
m(
int
param) {
4
return
param > 100 ? 777 : 22;
5
}
6
7
}
Bytecode
Java compiler version:
21
Other examples
Main page