|
Java™ by example!
|
|
|
What's better: import java.util.* or import java.util.Vector?
It depends on the situation. If you're only going to be using 1 or 2 classes from a package then its best to explicitly declare which ones you want to include, for example. If you're going to be using a lot of classes from a package then its easier just to use * and import the lot. Either way make sure youre actually using packages/classes you import.
Further Information
Author of answer: Edgecrusher
Comments to this answer are only viewable by members. Login or become a member!
|
|
|
|
|