Top "Super" questions

super is a keyword or function used to access/invoke members and constructors of a superclass.

super keyword unexpected here

According to ES6 shorthand initialiser, following 2 methods are same: In ES5 var person = { name: "Person", greet: function() { return "Hello " + this.…

ecmascript-6 super
super() and @staticmethod interaction

Is super() not meant to be used with staticmethods? When I try something like class First(object): @staticmethod def getlist(): …

python python-2.7 static-methods super
PowerMock: stub methods from parent class

I'm using PowerMock and I'd like to know how to keep all behavior of the child class, but stub super …

java overriding powermock super stub
Bounding generics with 'super' keyword

Why can I use super only with wildcards and not with type parameters? For example, in the Collection interface, why …

java generics language-design super
Using Super in an Objective C Category?

I'd like to override a method in an Objective C class that I don't have the source to. I've looked …

objective-c categories super
What is use of super.paint(g)?

Can someone explain me what is the use of super.paint(g) where, g is a Graphics variable in Applets …

java applet awt paint super
Verifying super.method() is called using Mockito

First of all I would like to say I am working with legacy code and I cannot change it no …

java testing junit mockito super
Require override of method to call super

I want that when a child class overrides a method in a parent class, the super.method() is called in …

java super
Python super() arguments: why not super(obj)?

I am trying to understand when and how to use super() in Python correctly (either 2.7.x or 3.x) on >&…

python inheritance super
Pylint warning for "useless super delegation"

Pylint raises the warning: Useless super delegation in method '__init__' (useless-super-delegation) for the SpecificError class below. class MyProjectExceptions(…

python python-2.7 super pylint