In Java, most methods are virtual methods. At a call site, different actual methods may be invoked depending on the objects. This is dynamic dispatch.
Question: Can we get the number of targets for a call site statically? For example, from bytecodes.
FYI: the answer to "virtual method" has a simple example of dynamic dispatch.