class Tmd {
byte a = 10;
int b = 20;
public void method(int i) {
byte x;
x = (byte)(i==0 ? ++a : ++b);
System.out.println("x=" + x + " a=" + a + " b=" + b);
}
}
class TestTmd {
public static void main(String args[]) {
Tmd o = new Tmd();
o.method(0);
o.method(1);
}
} |