I am just wondering what is super() and how it works. I have (general) idea, but I'm not quite sure about it. I'm wondering if this is right:
class ExampleClass extends File{
public ExampleClass(String str){
super(str);
}
}
I am also wondering if super(); is actually helpful / efficient its use.