Image

Imagetalldean wrote in Imagejava_dev

import java.util.* vs java.util....

Is there any performance difference (or any other appreciable difference) in using many imports from a package, instead of just importing the whole package?

For example:

import java.util.Enumeration;
import java.util.Hashtable;
import java.util.Vector;

vs.

import java.util.*