package a;
class hello{
}
package b;
import a.*;
class hello extends hello{
}
please tell me what is the result??
please tell me what is the result??
| |||||||||
feedback
|
|
It will give you a compile time error. Because
Even if you use a single type import :
The only way is to use the fully qualified name of Resources : | ||||
|
feedback
|
|
Wondering why you did not try compiling this yourself! Compiler will report a "cyclic inheritance" error.
| |||
|
feedback
|
|
We could regard package as first name, class as last name. Although we share last name with father, we are not same people. By such thought, inheritance is OK. Of course, "cyclic inheritance" should be avoided as Vijay mentioned. | |||
|
feedback
|
|
This is what the compiler would say:
It can be solved however, by fully qualifying the class-name:
Side note: Java is very allowing when it comes to name overloading. This program for instance, compiles just fine.
| ||||
|
feedback
|