See More

class Main { public static void main (String[] args) { String a = "a"; String b = null; System.out.println((b == null ? "" : b) + a); } } //https://pt.stackoverflow.com/q/137873/101