Comment by TheBozzCL
8 months ago
It'd be sufficient if a system involved somewhere in the process converted null values to strings. There's innumerable ways, but here's a simple one in Java:
    final String myNullString = "" + null;
    System.out.println(myNullString);
No comments yet
Contribute on Hacker News ↗