fork download
  1. class Ideone {
  2. public static void main (String[] args) {
  3. String a = "a";
  4. String b = null;
  5. String c = b + a;
  6. System.out.println(c);
  7. }
  8. }
Success #stdin #stdout 0.09s 320576KB
stdin
Standard input is empty
stdout
nulla