Question

Possible Duplicate:
Import package.* vs import package.SpecificType

I am wondering the different between java.util.* and java.util.Date in the import class declaration. Some developers prefer java.util.*, but other developers prefer declaring one specific import declaration per class. I know that this is a coding style and this is kind of trivial, but I am curious if there is any performance difference or the pros and cons.

No correct solution

OTHER TIPS

There is no performance or memory allocation difference to doing import pkg.* vs. import pkg.class. But best practice to import specific package class

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top