1. public static void main(String[] args) {
    2. String s = null;
    3. Integer i = null;
    4. Object o = null;
    5. System.out.println(s == o); //true
    6. System.out.println(i == o); //true
    7. System.out.println(s instanceof String); // false
    8. }