Package Imports
| |||
Instead of importing each class you need individually, you can import an entire package by replacing the class name with an asterisk (*) like this:
This does not affect the final compiled code at all.
However compilation will take a little longer. In general the time you
save in not having to recover from error messages about missing classes
more than makes up for the time you lose in compilation.
| |||
|