Importing classes

Does importing all classes make my file larger?
[54 byte] By [869817sharath_priyaa] at [2007-11-26 12:18:19]
# 1
No. But generally it is not recommended.
642814zadoka at 2007-7-7 14:57:42 > top of Java-index,Archived Forums,Socket Programming...
# 2
> Does importing all classes make my file larger?No
91610kajbja at 2007-7-7 14:57:42 > top of Java-index,Archived Forums,Socket Programming...
# 3
Importing classes is just a shorhand. The code is the same whether you import a class, or use a fully-qualified name.But you can't, realistically, import "all classes" because there are so many packages and, worse, some classes in different packages have the same name.
172116malcolmmca at 2007-7-7 14:57:42 > top of Java-index,Archived Forums,Socket Programming...