472,791 Members | 1,258 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,791 software developers and data experts.

Question: Inheritance from a buil-in type

Hi there,

A simple but important question:

How can I initialize a super class (like dict) correctly in my subclass constructor?

A sample:

class MyClass(dict):
def __init__(self):
dict.__init__(self)
...
Is there a general rule to do this for all buil-in types?

Thanks for help.

Thomas
Jul 18 '05 #1
4 9588
"T. Kaufmann" <me****@snafu.de> wrote in news:3F**************@snafu.de:
A simple but important question:

How can I initialize a super class (like dict) correctly in my
subclass constructor?

A sample:

class MyClass(dict):
def __init__(self):
dict.__init__(self)
...
Is there a general rule to do this for all buil-in types?


There are two rules. Generally, immutable objects get their initial values
from the constructor (__new__) while mutable objects are constructed with a
default value (e.g. empty list or dict) and are then set by the initialiser
(__init__) method. A few types which you might expect to be immutable are
actually mutable (e.g. property).

Mutable example (use for list, dict, property, etc.):

class MyClass(dict):
def __init__(self, *args, **kw):
dict.__init__(self, *args, **kw)

Immutable example (use for tuple, int, etc.):

class MyClass(tuple):
def __new__(cls, *args, **kw):
return tuple.__new__(cls, *args, **kw)

If there is any chance of your class being subclassed with multiple
inheritance involved, you should consider using super instead of naming the
baseclass directly, but most of the time you can get away with a direct
call to the baseclass.

--
Duncan Booth du****@rcp.co.uk
int month(char *p){return(124864/((p[0]+p[1]-p[2]&0x1f)+1)%12)["\5\x8\3"
"\6\7\xb\1\x9\xa\2\0\4"];} // Who said my code was obscure?
Jul 18 '05 #2
T. Kaufmann wrote:
Hi there,

A simple but important question:

How can I initialize a super class (like dict) correctly in my subclass
constructor?
Generally, you also want to override __new__ -- not in all cases can
you do all you want in __init__ by itself (e.g., it's far too late
when you inherit from immutable types, such as numbers, str, tuple).

A sample:

class MyClass(dict):
def __init__(self):
dict.__init__(self)
...
Yeah, you can do this, but the dict.__init__ call with just the
self parameter is actually redundant (it wouldn't be if there
WERE arguments -- either keyword ones, or a sequence of pairs,
or both -- with which to actually initialize a non-empty dict...).

Is there a general rule to do this for all buil-in types?


Generally, the super built-in may be advisable if you think you
may ever be involved in a multiple-inheritance graph. But that
is no different whether built-in types are involved, or not. I'm
not sure what "general rule" may be different for built-in types
than for others -- offhand, I don't think there are such differences.
Alex

Jul 18 '05 #3
Duncan Booth <du****@NOSPAMrcp.co.uk> wrote in message news:<Xn***************************@127.0.0.1>...

There are two rules. Generally, immutable objects get their initial values
from the constructor (__new__) while mutable objects are constructed with a
default value (e.g. empty list or dict) and are then set by the initialiser
(__init__) method. A few types which you might expect to be immutable are
actually mutable (e.g. property).


What is the thinking behind that? I mean you /can/ pass initial values
to a mutable using __new__, eg

class MyList (list) :
def __new__(cls, *args, **kwargs) :
return list.__new__(cls, *args, **kwargs)

or __init__ to pass values to a newly created immutable, eg

class MyTuple (tuple) :
def __init__(self, *args, **kwargs) :
return super(tuple, self).__init__(*args, **kwargs)

can't you? What's the pitfall?
Jul 18 '05 #4
af*****@yahoo.co.uk (Asun Friere) wrote in
news:38**************************@posting.google.c om:
Duncan Booth <du****@NOSPAMrcp.co.uk> wrote in message
news:<Xn***************************@127.0.0.1>...

There are two rules. Generally, immutable objects get their initial
values from the constructor (__new__) while mutable objects are
constructed with a default value (e.g. empty list or dict) and are
then set by the initialiser (__init__) method. A few types which you
might expect to be immutable are actually mutable (e.g. property).


What is the thinking behind that? I mean you /can/ pass initial values
to a mutable using __new__, eg

class MyList (list) :
def __new__(cls, *args, **kwargs) :
return list.__new__(cls, *args, **kwargs)

or __init__ to pass values to a newly created immutable, eg

class MyTuple (tuple) :
def __init__(self, *args, **kwargs) :
return super(tuple, self).__init__(*args, **kwargs)

can't you? What's the pitfall?

The pitfall is that these aren't doing what you think. In both cases you
just passed the original arguments straight through, so the list also got
the arguments it expected in its __init__ method, and the tuple got its
expected arguments in __new__. If you modify the arguments in any way
you'll find that your code still only sees the original arguments.

list.__init__ and tuple.__new__ act on their arguments.
list.__new__ and tuple.__init__ ignore their arguments.

Take the tuple example. tuple() takes 0 or 1 arguments, so you can't write:

tuple(1, 2, 3)

So define a class to do this:
class MyTuple(tuple): def __new__(cls, *args):
return tuple.__new__(cls, args)

MyTuple(1, 2, 3) (1, 2, 3)

Now try this with __init__ and the default __new__ will complain:
class MyTuple(tuple): def __init__(self, *args):
tuple.__init__(self, args)

MyTuple(1, 2, 3) Traceback (most recent call last):
File "<pyshell#73>", line 1, in ?
MyTuple(1, 2, 3)
TypeError: tuple() takes at most 1 argument (3 given)
If you try subclassing list, then this example shows clearly that the
arguments to __new__ are actually ignored:
class MyList (list) : def __new__(cls, *args, **kwargs) :
return list.__new__(cls, *args, **kwargs)
def __init__(self, *args, **kwargs):
print "list before init",self
list.__init__(self, *args, **kwargs)

print MyList([1, 2, 3])

list before init []
[1, 2, 3]
--
Duncan Booth du****@rcp.co.uk
int month(char *p){return(124864/((p[0]+p[1]-p[2]&0x1f)+1)%12)["\5\x8\3"
"\6\7\xb\1\x9\xa\2\0\4"];} // Who said my code was obscure?
Jul 18 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

17
by: Andrew Koenig | last post by:
Suppose I want to define a class hierarchy that represents expressions, for use in a compiler or something similar. We might imagine various kinds of expressions, classified by their top-level...
2
by: JustSomeGuy | last post by:
I have a few classes... class a : std::list<baseclass> { int keya; }; class b : std::list<a> { int keyb;
2
by: Tony Johansson | last post by:
Hello Experts!! Here we use multiple inheritance from two classes.We have a class named Person at the very top and below this class we have a Student class and an Employee class at the same...
3
by: Luis Diego Fallas | last post by:
Hi everyone , I'm having a problem when trying to compile code that contains the following pattern: using System; public class A { public class B : Inn.C { }
12
by: Meya-awe | last post by:
I am puzzled, what is the purpose of an interface? How does it work, what i mean is how does the compiler treats this? Why when we talk about separating user interface from business logic, an...
6
by: relient | last post by:
Hi, I have three classes: Animal, Dog and Cat. Dog inherits from Animal and Cat inherits from Dog. My question is: is Cat now also a Animal even though it didn't inherit directly from Animal?
14
by: petermichaux | last post by:
Hi, Hopefully the group doesn't mind an(other) inheritance question. Maybe the prototype inheritance style is starting to become a low dim light in my brain...probably not yet. ---- If I...
2
by: mike | last post by:
Hello fellow C++ experts, is there any dramatic difference between multiple inheritance: struct MyType4 : MyType1, MyType2, MyType3 { int MyInt; }; and: struct MyType4 {
13
by: barcaroller | last post by:
What is the common way/design-pattern (if any) in C++ for delegating function calls that are not handled by a certain class. Public inheritance would be one way but not all classes are meant to...
4
by: sip.address | last post by:
Hi there, When creating interfaces and implementations, the usual thing is doing somethign like class Interface { public: virtual void f() = 0; virtual void g() = 0; };
3
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: erikbower65 | last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA: 1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
0
by: kcodez | last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: lllomh | last post by:
How does React native implement an English player?
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.