Hi,
can I reach a hidden method when doing ugly inheritance in python?
.... def spin(self, n): print "A", n
....
.... def spin(self, m): print "B", m
....
.... def spin(self, k): print "C", k
....
['__doc__', '__module__', 'spin']
In f.x. the C-family of languages I guess something like this would
call B.spin:
((B)myC).spin(" Lancelot"); // almost forgot the ';'
Please correct me I am wrong (which I likely am) but as I understand
it this example calls the constructor of int instead of casting it,
right?
1337
So is there another way of digging into the past of a class? Or can/
should I create constructors for the classes A, B and C that takes
objects of the other classes?
Or should I have thought about getting unique names before I
implemented the ugly inheritance graph?
/Per
--
Per Erik Strandberg
blog: http://www.pererikstrandberg.se/blog/
can I reach a hidden method when doing ugly inheritance in python?
>>class A:
....
>>class B:
....
>>class C(A,B):
....
>>myC = C()
>>dir(myC)
>>dir(myC)
In f.x. the C-family of languages I guess something like this would
call B.spin:
((B)myC).spin(" Lancelot"); // almost forgot the ';'
Please correct me I am wrong (which I likely am) but as I understand
it this example calls the constructor of int instead of casting it,
right?
>>leet = int('1337')
>>leet
>>leet
So is there another way of digging into the past of a class? Or can/
should I create constructors for the classes A, B and C that takes
objects of the other classes?
Or should I have thought about getting unique names before I
implemented the ugly inheritance graph?
/Per
--
Per Erik Strandberg
blog: http://www.pererikstrandberg.se/blog/
Comment