| Author |
type of import statements?
|
senthil sen
Ranch Hand
Joined: Oct 10, 2002
Posts: 182
|
|
1.import java.packageName 2.class extends java.packageName 3.how can package be imported as an inline statement???
|
 |
Cindy Glass
"The Hood"
Sheriff
Joined: Sep 29, 2000
Posts: 8521
|
|
Line 2 is not a valid statement. It would need to be: class MyClass extends java.packageName.ClassName Import is not the same as include in C++. Import just provides the namespaces to look in to find the classes that are not qualified. If you fully qualify all of the classes that you use scattered through your code, then you don't need to have import statements at all. I would NOT recommend this practice. As a matter of fact many shops insist that you list every class that you are importing specifically, just to document what you are using.
|
"JavaRanch, where the deer and the Certified play" - David O'Meara
|
 |
 |
|
|
subject: type of import statements?
|
|
|