| Author |
Package import statement
|
alfred neih
Greenhorn
Joined: Feb 18, 2012
Posts: 1
|
|
Hi Friends
Could someone throw some light on what happens when you write additional import statements besides those that are being used in a java program ?
Does it slows down stuff or something ?
Thanks
|
 |
Stephan van Hulst
Bartender
Joined: Sep 20, 2010
Posts: 3053
|
|
No. Import statements are just an indication for the compiler where to look for classes necessary during compilation. After all classes have been found and the program has been compiled, the imports are just discarded.
Welcome to CodeRanch!
|
 |
Jeff Verdegan
Bartender
Joined: Jan 03, 2004
Posts: 5893
|
|
In other words, imports have precisely zero effect on the generated bytecode, and therefore have zero effect at runtime.
|
 |
 |
|
|
subject: Package import statement
|
|
|