Tagged Questions
The super tag has no wiki summary.
90
votes
2answers
52k views
Understanding Python super() and init methods
Trying to understand super(). From the looks of it, both child classes can be created just fine. Im curious as to what difference there actually is in this code:
class Base(object):
def ...
43
votes
2answers
3k views
Java Generics: What is PECS?
I came across PECS (short for Producer extends and Consumer super) while reading on Generics.
Can someone explain to me how to use PECS to resolve confusion between extends and super?
Thanks in ...
40
votes
3answers
10k views
How to use 'super' in Python?
I was wondering if anyone could explain to me the difference between doing
class Child(SomeBaseClass):
def __init__(self):
super(Child, self).__init__()
and this
class ...
30
votes
2answers
8k views
python super() raises TypeError ! Why?
The following code raises a TypeError :
>>> class X:
... def a(self):
... print "a"
...
>>> class Y(X):
... def a(self):
... super(Y,self).a()
... print "b"
...
>>> c = Y()
>>> c.a()
...
26
votes
4answers
14k views
How does Python's “super” do the right thing?
I'm running Python 2.5, so this question may not apply to Python 3. When you make a diamond class hierarchy using multiple inheritance and create an object of the derived-most class, Python does the ...
15
votes
3answers
4k views
“MetaClass”, “__new__”, “cls” and “super” - can someone explain the mechanism exactly
I have read posts like these:
What is a metaclass in Python?
What are your (concrete) use-cases for metaclasses in Python?
Python's Super is nifty, but you can't use it
but somehow I got ...
12
votes
2answers
3k views
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 into it, and it appears that Categories should allow me to do this, but I'd like to use the result ...
11
votes
4answers
4k views
What exactly is super in Objective-C?
As far as I know, it's a pointer to the superclass. It's hard-wired with the superclass, and not dynamically figured out at runtime. Would like to know it more in detail...
Anyone?
9
votes
3answers
587 views
unnecessary to put super() in constructor?
isnt this one automatically put by the compiler if i don“t put it in a subclass's constructor?
that means i dont even should care about it? in some articles they put it out.
and if i got 1 ...
8
votes
2answers
118 views
Is it possible to impose an upper bound (super X) on a named Generic type?
Suppose I have the following static method and interface (List is java.util.List). Note that the static method enforces a "super Foo" on the wildcard type of the list.
public class StaticMethod {
...
8
votes
2answers
450 views
Python super method and calling alternatives
I see everywhere examples that super-class methods should be called by:
super(SuperClass, instance).method(args)
Is there any disadvantage to doing:
SuperClass.method(instance, args)
TIA, Ian
8
votes
6answers
423 views
Java: Calling a super method which calls an overridden method
public class SuperClass
{
public void method1()
{
System.out.println("superclass method1");
this.method2();
}
public void method2()
{
...
8
votes
1answer
1k views
Usage of Python 3 super()
I wonder when to use what flavour of Python 3 super().
Help on class super in module builtins:
class super(object)
| super() -> same as super(__class__, <first argument>)
| super(type) ...
7
votes
3answers
110 views
Why is 'super' a keyword rather than a method in Ruby?
In Ruby, super is a keyword rather than a method.
Why was it designed this way?
Ruby's design tends toward implementing as much as possible as methods; keywords are usually reserved for language ...
6
votes
6answers
317 views
Emulate super in javascript
Basically is there a good elegant mechanism to emulate super with syntax that is as simple as one of the following
this.$super.prop()
this.$super.prop.apply(this, arguments);
Criteria to uphold ...
6
votes
5answers
288 views
How do I force a polymorphic call to the super method?
I have an init method that is used and overridden through out an extensive heirarchy. Each init call however extends on the work that the previous did. So naturally, I would:
@Override public void ...
6
votes
3answers
390 views
Locations of super() calls in Android Eclipse Plugin generated code reliable?
In many of Android methods, especially constructors and overridden methods, you should or even must call the parent class method using super(). When you use the Eclipse Source > Override/Implement ...
6
votes
2answers
232 views
Python: Why can't I use `super` on a class?
Why can't I use super to get a method of a class's superclass?
Example:
Python 3.1.3
>>> class A(object):
... def my_method(self): pass
>>> class B(A):
... def ...
6
votes
2answers
265 views
Modifying a namedtuple's constructor arguments via subclassing?
I want to create a namedtuple which represents the individual flags in a short bitfield. I'm trying to subclass it so that I can unpack the bitfield before the tuple is created. However, my current ...
6
votes
4answers
421 views
In Java type arguments, does <? extends E> mean strictly subtypes only? or would E also suffice?
In Java type arguments, does mean strictly subtypes only? or would E also suffice?
6
votes
3answers
607 views
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 is the toArray method not written like this
interface Collection<T>{
...
6
votes
3answers
921 views
Java How to call method of grand parents?
Let's assume I have 3 classes A, B and C, each one extending the previous one.
How do I call the code in A.myMethod() from C.myMethod() if B also implements myMethod?
class A
{
public void ...
6
votes
4answers
617 views
Implicitly invoking parent class initializer
class A(object):
def __init__(self, a, b, c):
#super(A, self).__init__()
super(self.__class__, self).__init__()
class B(A):
def __init__(self, b, c):
print super(B, ...
5
votes
3answers
114 views
Java: How to call super method from inner in-place class
I have base class Foo with method spam and class Bar which overrides spam. I need to call spam of base class in method of some callback object which is defined in-place:
public class Foo {
public ...
5
votes
4answers
93 views
Passing construction to super class
I was wondering if i have an abstract super class with x different constructors, and i want to be able to use all those constructors in a subclass, do i have to write all x constructors in the ...
5
votes
8answers
550 views
Force base method call
Is there a construct in Java or C# that forces inheriting classes to call the base implementation? You can call super() or base() but is it possible to have it throw a compile-time error if it isn't ...
5
votes
8answers
617 views
5
votes
9answers
339 views
Do you put a super() call a the beginning of your constructors?
This is a question about coding style and recommended practices:
As explained in the answers to the question unnecessary to put super() in constructor?, if you write a constructor for a class that is ...
5
votes
2answers
3k views
Private methods using Categories in Objective-C: calling super from a subclass
I was reading how to implement private methods in Objective-C (Best way to define private methods for a class in Objective-C) and a question popped up in my mind:
How do you manage to implement ...
5
votes
6answers
1k views
Is it a good idea to use super() in Python?
Or should I just explicitly reference the superclasses whose methods I want to call?
It seems brittle to repeat the names of super classes when referencing their constructors, but this page ...
4
votes
5answers
270 views
Using super() correctly? [Python]
I made a small chunk of code because I'm still trying to figure out the specifics of using super(). Why does this chunk run to this TypeError
a = SecondClass()
TypeError: __init__() takes exactly 2 ...
4
votes
3answers
89 views
Super in initializing objects [closed]
Possible Duplicate:
why does initializing subclasses require calling the super class's same init function?
I really can't understand the role of super in initializing an object.
For ...
4
votes
1answer
136 views
In python, super() is always called first in a method. Are there situations where it should be called later?
Are there situations where you want to do some processing before you call super()?
This is a contrived example. Are there better examples? Is this considered pythonic?
class Base(object):
def ...
4
votes
3answers
176 views
Referring SUPER to superclass of object
Please see the perldoc for oop
http://perldoc.perl.org/perlobj.html
As per the document:
"It is important to note that SUPER refers to the superclass(es) of the current package and not to the ...
4
votes
1answer
112 views
Doubled POST requests instead of single
I have an edit page for my object. Because I've divided data in two tabs, I'm using jquery-ui. On the first tab (#core_data) I'm loading object's main data. Form is submited via Ajax :
<form ...
4
votes
1answer
1k views
Django form.save step by step
Let's say I have a form for adding/editing products (with field 'user' being a foreign key to my User) triggered from two separate view functions - add/edit :
def product_add(request):
...
3
votes
2answers
80 views
python: super()-like proxy object that starts the MRO search at a specified class
According to the docs, super(cls, obj) returns
a proxy object that delegates method calls to a parent or sibling
class of type cls
I understand why super() offers this functionality, but I ...
3
votes
2answers
103 views
Python multi-inheritance, __init__
Regarding multiple parent inheritance, when I call the super.__init__, why doesn't parent2's __init__ function get called? Thanks.
class parent(object):
var1=1
var2=2
def ...
3
votes
3answers
70 views
What happens if you save a call to super in a variable for future use?
Forgive me if I'm being ignorant of the obvious here, but what would happen if you save a call to super in a variable and use it later.
Here is a part of a class definition to show you what I mean.
...
3
votes
4answers
156 views
Java - using the 'super' keyword
Simple question. I made a class called Tester1 which extends another called Tester2. Tester2 contains a public string called 'ABC'.
Here is Tester1:
public class Tester1 extends Tester2
{
public ...
3
votes
5answers
172 views
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 that child method.
Is there any way to check this at compile time?
If not, how would I go about ...
3
votes
1answer
115 views
Why would [super init] ever return nil, when “super” is NSObject? [closed]
Possible Duplicate:
In Objective-C why should I check if self = [super init] is not nil?
In Objective-C book i am reading, it is said that when [init] message is sent to NSObject, on ...
3
votes
1answer
336 views
django templates - using block.super in included template fails (exception)
the idea is to to have multiple widgets on a page and include all js and css files needed form this 'widgets' (it's easy to manage files this way). Duplicated files is not a problem.
Every widget's ...
3
votes
1answer
308 views
Python 2.6: How to access base class descriptor field hidden by derived class?
I have a descriptor storing data in host object's dictionary.
And I have fields of this descriptor in class hierarchy with the same name:
class ADescriptor(object):
def __init__(self, ...
3
votes
4answers
160 views
Obj-C: call super class
- (void)viewDidAppear:(BOOL)animated {
<CODE BEFORE>
[super viewDidAppear:animated];
<CODE AFTER>
}
What is correct, to put all code before or after the super call ?
Its ...
3
votes
2answers
425 views
In Java, to use the “super” keyword, do I have to import the target class?
When, in a constructor, we use the super keyword, do we have to import the class the super refers to (when super doesn't refer to Object)?
class A extends ... {
A() {
super(); // do we ...
3
votes
2answers
211 views
Super constructor in java
Please explain
public class Contact {
private String contactId;
private String firstName;
private String lastName;
private String email;
private String phoneNumber;
public ...
3
votes
2answers
606 views
Django block.super
I have 3 Django templates:
base.html
<title>{% block title %} SITE NAME {% endblock %}</title>
default.html
{% extends "base.html" %}
{% block title %} {{ block.super }} - SECTION ...
3
votes
2answers
261 views
How to avoid infinite recursion with super()?
I have code like this:
class A(object):
def __init__(self):
self.a = 1
class B(A):
def __init__(self):
self.b = 2
super(self.__class__, self).__init__()
class ...
3
votes
7answers
1k views
Getting the name of a sub-class from within a super-class
Let's say I have a base class named Entity. In that class, I have a static method to retrieve the class name:
class Entity {
public static String getClass() {
return ...