...
Code Block | ||
---|---|---|
| ||
public class Expr {
public static void main(String[] args) {
char alpha = 'A';
int i = 0;
boolean trueExp = ...; // some expression that evaluates to true
System.out.print(trueExp ? alpha : ((char) 0)); // prints A
// Deliberate narrowing cast of i; possible truncation OK
System.out.print(trueExp ? alpha : ((char) i)); // prints A
}
}
|
...