class p {
p(){
System.out.println("1");
}
}
class Student extends p{
Student() {
super();
System.out.println("2");
}
public static void main(String[] args) {
Student s = new Student();
}
}
As I have provided super() explicitly, but after de-compiling using jd-gui I am not able see super() where I have placed, as super() should be provided by compiler itself. I just want to see where this, super keyword and other things are provided by compiler implicitly. I googled and found that .class file I can see with jd-gui but I am not able to see super() and this() in that, is there any other way for the same?