About Question enthuware.ocajp.i.v7.2.1066 :
Posted: Wed Oct 08, 2014 9:22 am
I find that the answer to this question is very subjective. It makes more sense to me to import com.enthu.* than to import com.*. With the second import statement, you're potentially importing more packages that have no relevance to your code than if you imported the first one. The reasoning for why the first import is incorrect is also misleading, because although you're not using any of the classes directly in that package, you are using a package within enthu, namely rad. Am I missing something? Does the wildcard marker cause the import statement to recursively import subpackages?