In some of the resources I have seen online about Java they say that it is not good to use the *
in an import statement in Java. For example import java.io.*
I was wondering why this is considered bad practice. Is is solely because it makes it hard for another programmer to know exactly what classes you are using under the java.io
package or is there another reason for it?