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.

没有正确的解决方案

其他提示

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top