When, in a constructor, we use the super keyword, do we have to import the class the super refers to (when super doesn't refer to Object)?
class A extends ... {
A() {
super(); // do we need to import the class super refers to?
}
}
|
When, in a constructor, we use the super keyword, do we have to import the class the super refers to (when super doesn't refer to Object)?
|
|||||||
|
|
Yes, because it is in the The |
|||
|
|
|
You do need to import the super class if it is not in the same package or it is in java.lang. If the base class is not available, |
||||
|
|