I was just wondering whether it is possible for a class to extend itself and it might look foolish though but found some result which is out of my scope of understanding. So I would be requiring the help of masters in order to understand this.
I executed the following statement for setting the superclass of a class to be itself and wrote the following statements
public Class MyClass{
public static void main(String[] args) throws ClassNotFoundException {
Class<?> classz= Class.forname(“java.lang.String”);
System.out.println(classz.getName());
System.out.println(classz.getSuperClass().getName());
classz.setSuperClass(java.lang.String.class);
System.out.println(classz.getSuperClass());
}
These statements were valid at runtime and obtained the following result although I expected some error :
Output:
java.lang.String
java.lang.Object
class java.lang.String
And trying something like this at compile time obtained the following exception as expected
public Class MyClass extends MyClass{
}
At compile time the following error was obtained as expected which is fine
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
If we try to get the superclass of Object Class it returns null as expected and throws an error. but via same procedure we can even set the superclass to Object class itself or any other class.
Kindly put some limelight on this.
setSuperClass? – artbristol Jan 30 at 17:06setSuperClass?java.lang.Classdoesn't declare any such method. – Paul Bellora Jan 30 at 17:07Classis an incorrect class declaration, it should beclass.Class.fornameis not a method, do you meanClass.forName?Class#setSuperClassis also not a method, and no similar method exists. Can you please include a concise, working example to recreate the functionality in question? – Vulcan Jan 30 at 17:07weblogic.apache.xml.utils.synthetic.Classwhich has a setSuperClass() method. Dunno what it is. – Lee Meador Jan 30 at 17:19