0
votes
2answers
47 views
accept supertype of generic parameter on single object?
is it possible somehow to accept only super types of the generic Type of a class?
what im looking for is something like:
class <T extends Object> MyClass {
public <T …
0
votes
2answers
75 views
Private methods using Categories in Objective-C: calling super from a subclass.
Hello folks,
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:
Ho …
-1
votes
0answers
23 views
XML Parser Superclass
I'm new to iPhone objective c programming and in my app are struggling with calling multiple webservices. I read your comment about your solution for creating a super class for thi …
0
votes
3answers
88 views
Extending Generic Abstract Class & Correct Use of Super
public abstract class AbstractTool<AT extends AbstractThing> {
protected ArrayList<AT> ledger;
public AbstractTool() {
ledger = new ArrayList<AT>();
…
1
vote
2answers
176 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 …
1
vote
3answers
58 views
default parameter values are evaluated ONCE
Hello. I've found a strange issue with subclassing and dictionary updates in New-Style Classes:
Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)] on
win …
3
votes
6answers
303 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 …
1
vote
3answers
224 views
Basic examples of single-inheritence super() in Python
Let's say I have the following classes set up:
class Foo:
def __init__(self, frob, frotz):
self.frobnicate = frob
self.frotz = frotz
class Bar:
def _ …
2
votes
4answers
187 views
compilers for languages from 1950’s and 1960’s
i am trying to find the best compilers (if they are actually available) for the following languages:
ALGOL 60
TRAC
TELCOMP
Superplan
BACAIC
i don't know if any of these are …
2
votes
4answers
426 views
return generic type from generic function
we have a function more or less like the following.
however we currently return List
which in function bla() would return List<Bar> at runtime.
I'm looking for a way to make …
0
votes
3answers
471 views
C++ Explicit Superclass Constructor Problem While Using Header Files
Hello,
I seem to be having a very frustrating time with an inherited class calling an explicit superclass constructor. I just can't seem to get the syntax right!
All the example …
14
votes
4answers
1k 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 clas …
4
votes
2answers
2k views
Python super()
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 …
2
votes
2answers
299 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"
...
> …
0
votes
5answers
1k views
using constructor from the super class
Hello,
Java does not allow multiple inheritance, meaning that a class cannot inherit from two classes, which does not have anything in common, meaning that they are not on the sam …
