I have a quick and straighforward question:
I have this simple class:
public class A { public void m(Object o) { System.out.println(\"m
another related question for you to think about:
public static void main(String[] args) { A a = new A(); Object n = new Integer(1); a.m(n); // which method will be called? }