Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1 | .. _tut-classes: |
| 2 | |
| 3 | ******* |
| 4 | Classes |
| 5 | ******* |
| 6 | |
| 7 | Python's class mechanism adds classes to the language with a minimum of new |
| 8 | syntax and semantics. It is a mixture of the class mechanisms found in C++ and |
| 9 | Modula-3. As is true for modules, classes in Python do not put an absolute |
| 10 | barrier between definition and user, but rather rely on the politeness of the |
| 11 | user not to "break into the definition." The most important features of classes |
| 12 | are retained with full power, however: the class inheritance mechanism allows |
| 13 | multiple base classes, a derived class can override any methods of its base |
| 14 | class or classes, and a method can call the method of a base class with the same |
| 15 | name. Objects can contain an arbitrary amount of private data. |
| 16 | |
| 17 | In C++ terminology, all class members (including the data members) are *public*, |
| 18 | and all member functions are *virtual*. There are no special constructors or |
| 19 | destructors. As in Modula-3, there are no shorthands for referencing the |
| 20 | object's members from its methods: the method function is declared with an |
| 21 | explicit first argument representing the object, which is provided implicitly by |
| 22 | the call. As in Smalltalk, classes themselves are objects, albeit in the wider |
| 23 | sense of the word: in Python, all data types are objects. This provides |
| 24 | semantics for importing and renaming. Unlike C++ and Modula-3, built-in types |
| 25 | can be used as base classes for extension by the user. Also, like in C++ but |
| 26 | unlike in Modula-3, most built-in operators with special syntax (arithmetic |
| 27 | operators, subscripting etc.) can be redefined for class instances. |
| 28 | |
| 29 | |
| 30 | .. _tut-terminology: |
| 31 | |
| 32 | A Word About Terminology |
| 33 | ======================== |
| 34 | |
| 35 | Lacking universally accepted terminology to talk about classes, I will make |
| 36 | occasional use of Smalltalk and C++ terms. (I would use Modula-3 terms, since |
| 37 | its object-oriented semantics are closer to those of Python than C++, but I |
| 38 | expect that few readers have heard of it.) |
| 39 | |
| 40 | Objects have individuality, and multiple names (in multiple scopes) can be bound |
| 41 | to the same object. This is known as aliasing in other languages. This is |
| 42 | usually not appreciated on a first glance at Python, and can be safely ignored |
| 43 | when dealing with immutable basic types (numbers, strings, tuples). However, |
| 44 | aliasing has an (intended!) effect on the semantics of Python code involving |
| 45 | mutable objects such as lists, dictionaries, and most types representing |
| 46 | entities outside the program (files, windows, etc.). This is usually used to |
| 47 | the benefit of the program, since aliases behave like pointers in some respects. |
| 48 | For example, passing an object is cheap since only a pointer is passed by the |
| 49 | implementation; and if a function modifies an object passed as an argument, the |
| 50 | caller will see the change --- this eliminates the need for two different |
| 51 | argument passing mechanisms as in Pascal. |
| 52 | |
| 53 | |
| 54 | .. _tut-scopes: |
| 55 | |
| 56 | Python Scopes and Name Spaces |
| 57 | ============================= |
| 58 | |
| 59 | Before introducing classes, I first have to tell you something about Python's |
| 60 | scope rules. Class definitions play some neat tricks with namespaces, and you |
| 61 | need to know how scopes and namespaces work to fully understand what's going on. |
| 62 | Incidentally, knowledge about this subject is useful for any advanced Python |
| 63 | programmer. |
| 64 | |
| 65 | Let's begin with some definitions. |
| 66 | |
| 67 | A *namespace* is a mapping from names to objects. Most namespaces are currently |
| 68 | implemented as Python dictionaries, but that's normally not noticeable in any |
| 69 | way (except for performance), and it may change in the future. Examples of |
| 70 | namespaces are: the set of built-in names (functions such as :func:`abs`, and |
| 71 | built-in exception names); the global names in a module; and the local names in |
| 72 | a function invocation. In a sense the set of attributes of an object also form |
| 73 | a namespace. The important thing to know about namespaces is that there is |
| 74 | absolutely no relation between names in different namespaces; for instance, two |
| 75 | different modules may both define a function "maximize" without confusion --- |
| 76 | users of the modules must prefix it with the module name. |
| 77 | |
| 78 | By the way, I use the word *attribute* for any name following a dot --- for |
| 79 | example, in the expression ``z.real``, ``real`` is an attribute of the object |
| 80 | ``z``. Strictly speaking, references to names in modules are attribute |
| 81 | references: in the expression ``modname.funcname``, ``modname`` is a module |
| 82 | object and ``funcname`` is an attribute of it. In this case there happens to be |
| 83 | a straightforward mapping between the module's attributes and the global names |
| 84 | defined in the module: they share the same namespace! [#]_ |
| 85 | |
| 86 | Attributes may be read-only or writable. In the latter case, assignment to |
| 87 | attributes is possible. Module attributes are writable: you can write |
| 88 | ``modname.the_answer = 42``. Writable attributes may also be deleted with the |
| 89 | :keyword:`del` statement. For example, ``del modname.the_answer`` will remove |
| 90 | the attribute :attr:`the_answer` from the object named by ``modname``. |
| 91 | |
| 92 | Name spaces are created at different moments and have different lifetimes. The |
| 93 | namespace containing the built-in names is created when the Python interpreter |
| 94 | starts up, and is never deleted. The global namespace for a module is created |
| 95 | when the module definition is read in; normally, module namespaces also last |
| 96 | until the interpreter quits. The statements executed by the top-level |
| 97 | invocation of the interpreter, either read from a script file or interactively, |
| 98 | are considered part of a module called :mod:`__main__`, so they have their own |
| 99 | global namespace. (The built-in names actually also live in a module; this is |
| 100 | called :mod:`__builtin__`.) |
| 101 | |
| 102 | The local namespace for a function is created when the function is called, and |
| 103 | deleted when the function returns or raises an exception that is not handled |
| 104 | within the function. (Actually, forgetting would be a better way to describe |
| 105 | what actually happens.) Of course, recursive invocations each have their own |
| 106 | local namespace. |
| 107 | |
| 108 | A *scope* is a textual region of a Python program where a namespace is directly |
| 109 | accessible. "Directly accessible" here means that an unqualified reference to a |
| 110 | name attempts to find the name in the namespace. |
| 111 | |
| 112 | Although scopes are determined statically, they are used dynamically. At any |
| 113 | time during execution, there are at least three nested scopes whose namespaces |
| 114 | are directly accessible: the innermost scope, which is searched first, contains |
| 115 | the local names; the namespaces of any enclosing functions, which are searched |
| 116 | starting with the nearest enclosing scope; the middle scope, searched next, |
| 117 | contains the current module's global names; and the outermost scope (searched |
| 118 | last) is the namespace containing built-in names. |
| 119 | |
| 120 | If a name is declared global, then all references and assignments go directly to |
| 121 | the middle scope containing the module's global names. Otherwise, all variables |
| 122 | found outside of the innermost scope are read-only (an attempt to write to such |
| 123 | a variable will simply create a *new* local variable in the innermost scope, |
| 124 | leaving the identically named outer variable unchanged). |
| 125 | |
| 126 | Usually, the local scope references the local names of the (textually) current |
| 127 | function. Outside functions, the local scope references the same namespace as |
| 128 | the global scope: the module's namespace. Class definitions place yet another |
| 129 | namespace in the local scope. |
| 130 | |
| 131 | It is important to realize that scopes are determined textually: the global |
| 132 | scope of a function defined in a module is that module's namespace, no matter |
| 133 | from where or by what alias the function is called. On the other hand, the |
| 134 | actual search for names is done dynamically, at run time --- however, the |
| 135 | language definition is evolving towards static name resolution, at "compile" |
| 136 | time, so don't rely on dynamic name resolution! (In fact, local variables are |
| 137 | already determined statically.) |
| 138 | |
| 139 | A special quirk of Python is that assignments always go into the innermost |
| 140 | scope. Assignments do not copy data --- they just bind names to objects. The |
| 141 | same is true for deletions: the statement ``del x`` removes the binding of ``x`` |
| 142 | from the namespace referenced by the local scope. In fact, all operations that |
| 143 | introduce new names use the local scope: in particular, import statements and |
| 144 | function definitions bind the module or function name in the local scope. (The |
| 145 | :keyword:`global` statement can be used to indicate that particular variables |
| 146 | live in the global scope.) |
| 147 | |
| 148 | |
| 149 | .. _tut-firstclasses: |
| 150 | |
| 151 | A First Look at Classes |
| 152 | ======================= |
| 153 | |
| 154 | Classes introduce a little bit of new syntax, three new object types, and some |
| 155 | new semantics. |
| 156 | |
| 157 | |
| 158 | .. _tut-classdefinition: |
| 159 | |
| 160 | Class Definition Syntax |
| 161 | ----------------------- |
| 162 | |
| 163 | The simplest form of class definition looks like this:: |
| 164 | |
| 165 | class ClassName: |
| 166 | <statement-1> |
| 167 | . |
| 168 | . |
| 169 | . |
| 170 | <statement-N> |
| 171 | |
| 172 | Class definitions, like function definitions (:keyword:`def` statements) must be |
| 173 | executed before they have any effect. (You could conceivably place a class |
| 174 | definition in a branch of an :keyword:`if` statement, or inside a function.) |
| 175 | |
| 176 | In practice, the statements inside a class definition will usually be function |
| 177 | definitions, but other statements are allowed, and sometimes useful --- we'll |
| 178 | come back to this later. The function definitions inside a class normally have |
| 179 | a peculiar form of argument list, dictated by the calling conventions for |
| 180 | methods --- again, this is explained later. |
| 181 | |
| 182 | When a class definition is entered, a new namespace is created, and used as the |
| 183 | local scope --- thus, all assignments to local variables go into this new |
| 184 | namespace. In particular, function definitions bind the name of the new |
| 185 | function here. |
| 186 | |
| 187 | When a class definition is left normally (via the end), a *class object* is |
| 188 | created. This is basically a wrapper around the contents of the namespace |
| 189 | created by the class definition; we'll learn more about class objects in the |
| 190 | next section. The original local scope (the one in effect just before the class |
| 191 | definition was entered) is reinstated, and the class object is bound here to the |
| 192 | class name given in the class definition header (:class:`ClassName` in the |
| 193 | example). |
| 194 | |
| 195 | |
| 196 | .. _tut-classobjects: |
| 197 | |
| 198 | Class Objects |
| 199 | ------------- |
| 200 | |
| 201 | Class objects support two kinds of operations: attribute references and |
| 202 | instantiation. |
| 203 | |
| 204 | *Attribute references* use the standard syntax used for all attribute references |
| 205 | in Python: ``obj.name``. Valid attribute names are all the names that were in |
| 206 | the class's namespace when the class object was created. So, if the class |
| 207 | definition looked like this:: |
| 208 | |
| 209 | class MyClass: |
| 210 | "A simple example class" |
| 211 | i = 12345 |
| 212 | def f(self): |
| 213 | return 'hello world' |
| 214 | |
| 215 | then ``MyClass.i`` and ``MyClass.f`` are valid attribute references, returning |
| 216 | an integer and a function object, respectively. Class attributes can also be |
| 217 | assigned to, so you can change the value of ``MyClass.i`` by assignment. |
| 218 | :attr:`__doc__` is also a valid attribute, returning the docstring belonging to |
| 219 | the class: ``"A simple example class"``. |
| 220 | |
| 221 | Class *instantiation* uses function notation. Just pretend that the class |
| 222 | object is a parameterless function that returns a new instance of the class. |
| 223 | For example (assuming the above class):: |
| 224 | |
| 225 | x = MyClass() |
| 226 | |
| 227 | creates a new *instance* of the class and assigns this object to the local |
| 228 | variable ``x``. |
| 229 | |
| 230 | The instantiation operation ("calling" a class object) creates an empty object. |
| 231 | Many classes like to create objects with instances customized to a specific |
| 232 | initial state. Therefore a class may define a special method named |
| 233 | :meth:`__init__`, like this:: |
| 234 | |
| 235 | def __init__(self): |
| 236 | self.data = [] |
| 237 | |
| 238 | When a class defines an :meth:`__init__` method, class instantiation |
| 239 | automatically invokes :meth:`__init__` for the newly-created class instance. So |
| 240 | in this example, a new, initialized instance can be obtained by:: |
| 241 | |
| 242 | x = MyClass() |
| 243 | |
| 244 | Of course, the :meth:`__init__` method may have arguments for greater |
| 245 | flexibility. In that case, arguments given to the class instantiation operator |
| 246 | are passed on to :meth:`__init__`. For example, :: |
| 247 | |
| 248 | >>> class Complex: |
| 249 | ... def __init__(self, realpart, imagpart): |
| 250 | ... self.r = realpart |
| 251 | ... self.i = imagpart |
| 252 | ... |
| 253 | >>> x = Complex(3.0, -4.5) |
| 254 | >>> x.r, x.i |
| 255 | (3.0, -4.5) |
| 256 | |
| 257 | |
| 258 | .. _tut-instanceobjects: |
| 259 | |
| 260 | Instance Objects |
| 261 | ---------------- |
| 262 | |
| 263 | Now what can we do with instance objects? The only operations understood by |
| 264 | instance objects are attribute references. There are two kinds of valid |
| 265 | attribute names, data attributes and methods. |
| 266 | |
| 267 | *data attributes* correspond to "instance variables" in Smalltalk, and to "data |
| 268 | members" in C++. Data attributes need not be declared; like local variables, |
| 269 | they spring into existence when they are first assigned to. For example, if |
| 270 | ``x`` is the instance of :class:`MyClass` created above, the following piece of |
| 271 | code will print the value ``16``, without leaving a trace:: |
| 272 | |
| 273 | x.counter = 1 |
| 274 | while x.counter < 10: |
| 275 | x.counter = x.counter * 2 |
| 276 | print x.counter |
| 277 | del x.counter |
| 278 | |
| 279 | The other kind of instance attribute reference is a *method*. A method is a |
| 280 | function that "belongs to" an object. (In Python, the term method is not unique |
| 281 | to class instances: other object types can have methods as well. For example, |
| 282 | list objects have methods called append, insert, remove, sort, and so on. |
| 283 | However, in the following discussion, we'll use the term method exclusively to |
| 284 | mean methods of class instance objects, unless explicitly stated otherwise.) |
| 285 | |
| 286 | .. index:: object: method |
| 287 | |
| 288 | Valid method names of an instance object depend on its class. By definition, |
| 289 | all attributes of a class that are function objects define corresponding |
| 290 | methods of its instances. So in our example, ``x.f`` is a valid method |
| 291 | reference, since ``MyClass.f`` is a function, but ``x.i`` is not, since |
| 292 | ``MyClass.i`` is not. But ``x.f`` is not the same thing as ``MyClass.f`` --- it |
| 293 | is a *method object*, not a function object. |
| 294 | |
| 295 | |
| 296 | .. _tut-methodobjects: |
| 297 | |
| 298 | Method Objects |
| 299 | -------------- |
| 300 | |
| 301 | Usually, a method is called right after it is bound:: |
| 302 | |
| 303 | x.f() |
| 304 | |
| 305 | In the :class:`MyClass` example, this will return the string ``'hello world'``. |
| 306 | However, it is not necessary to call a method right away: ``x.f`` is a method |
| 307 | object, and can be stored away and called at a later time. For example:: |
| 308 | |
| 309 | xf = x.f |
| 310 | while True: |
| 311 | print xf() |
| 312 | |
| 313 | will continue to print ``hello world`` until the end of time. |
| 314 | |
| 315 | What exactly happens when a method is called? You may have noticed that |
| 316 | ``x.f()`` was called without an argument above, even though the function |
| 317 | definition for :meth:`f` specified an argument. What happened to the argument? |
| 318 | Surely Python raises an exception when a function that requires an argument is |
| 319 | called without any --- even if the argument isn't actually used... |
| 320 | |
| 321 | Actually, you may have guessed the answer: the special thing about methods is |
| 322 | that the object is passed as the first argument of the function. In our |
| 323 | example, the call ``x.f()`` is exactly equivalent to ``MyClass.f(x)``. In |
| 324 | general, calling a method with a list of *n* arguments is equivalent to calling |
| 325 | the corresponding function with an argument list that is created by inserting |
| 326 | the method's object before the first argument. |
| 327 | |
| 328 | If you still don't understand how methods work, a look at the implementation can |
| 329 | perhaps clarify matters. When an instance attribute is referenced that isn't a |
| 330 | data attribute, its class is searched. If the name denotes a valid class |
| 331 | attribute that is a function object, a method object is created by packing |
| 332 | (pointers to) the instance object and the function object just found together in |
| 333 | an abstract object: this is the method object. When the method object is called |
| 334 | with an argument list, it is unpacked again, a new argument list is constructed |
| 335 | from the instance object and the original argument list, and the function object |
| 336 | is called with this new argument list. |
| 337 | |
| 338 | |
| 339 | .. _tut-remarks: |
| 340 | |
| 341 | Random Remarks |
| 342 | ============== |
| 343 | |
| 344 | .. % [These should perhaps be placed more carefully...] |
| 345 | |
| 346 | Data attributes override method attributes with the same name; to avoid |
| 347 | accidental name conflicts, which may cause hard-to-find bugs in large programs, |
| 348 | it is wise to use some kind of convention that minimizes the chance of |
| 349 | conflicts. Possible conventions include capitalizing method names, prefixing |
| 350 | data attribute names with a small unique string (perhaps just an underscore), or |
| 351 | using verbs for methods and nouns for data attributes. |
| 352 | |
| 353 | Data attributes may be referenced by methods as well as by ordinary users |
| 354 | ("clients") of an object. In other words, classes are not usable to implement |
| 355 | pure abstract data types. In fact, nothing in Python makes it possible to |
| 356 | enforce data hiding --- it is all based upon convention. (On the other hand, |
| 357 | the Python implementation, written in C, can completely hide implementation |
| 358 | details and control access to an object if necessary; this can be used by |
| 359 | extensions to Python written in C.) |
| 360 | |
| 361 | Clients should use data attributes with care --- clients may mess up invariants |
| 362 | maintained by the methods by stamping on their data attributes. Note that |
| 363 | clients may add data attributes of their own to an instance object without |
| 364 | affecting the validity of the methods, as long as name conflicts are avoided --- |
| 365 | again, a naming convention can save a lot of headaches here. |
| 366 | |
| 367 | There is no shorthand for referencing data attributes (or other methods!) from |
| 368 | within methods. I find that this actually increases the readability of methods: |
| 369 | there is no chance of confusing local variables and instance variables when |
| 370 | glancing through a method. |
| 371 | |
| 372 | Often, the first argument of a method is called ``self``. This is nothing more |
| 373 | than a convention: the name ``self`` has absolutely no special meaning to |
| 374 | Python. (Note, however, that by not following the convention your code may be |
| 375 | less readable to other Python programmers, and it is also conceivable that a |
| 376 | *class browser* program might be written that relies upon such a convention.) |
| 377 | |
| 378 | Any function object that is a class attribute defines a method for instances of |
| 379 | that class. It is not necessary that the function definition is textually |
| 380 | enclosed in the class definition: assigning a function object to a local |
| 381 | variable in the class is also ok. For example:: |
| 382 | |
| 383 | # Function defined outside the class |
| 384 | def f1(self, x, y): |
| 385 | return min(x, x+y) |
| 386 | |
| 387 | class C: |
| 388 | f = f1 |
| 389 | def g(self): |
| 390 | return 'hello world' |
| 391 | h = g |
| 392 | |
| 393 | Now ``f``, ``g`` and ``h`` are all attributes of class :class:`C` that refer to |
| 394 | function objects, and consequently they are all methods of instances of |
| 395 | :class:`C` --- ``h`` being exactly equivalent to ``g``. Note that this practice |
| 396 | usually only serves to confuse the reader of a program. |
| 397 | |
| 398 | Methods may call other methods by using method attributes of the ``self`` |
| 399 | argument:: |
| 400 | |
| 401 | class Bag: |
| 402 | def __init__(self): |
| 403 | self.data = [] |
| 404 | def add(self, x): |
| 405 | self.data.append(x) |
| 406 | def addtwice(self, x): |
| 407 | self.add(x) |
| 408 | self.add(x) |
| 409 | |
| 410 | Methods may reference global names in the same way as ordinary functions. The |
| 411 | global scope associated with a method is the module containing the class |
| 412 | definition. (The class itself is never used as a global scope!) While one |
| 413 | rarely encounters a good reason for using global data in a method, there are |
| 414 | many legitimate uses of the global scope: for one thing, functions and modules |
| 415 | imported into the global scope can be used by methods, as well as functions and |
| 416 | classes defined in it. Usually, the class containing the method is itself |
| 417 | defined in this global scope, and in the next section we'll find some good |
| 418 | reasons why a method would want to reference its own class! |
| 419 | |
| 420 | |
| 421 | .. _tut-inheritance: |
| 422 | |
| 423 | Inheritance |
| 424 | =========== |
| 425 | |
| 426 | Of course, a language feature would not be worthy of the name "class" without |
| 427 | supporting inheritance. The syntax for a derived class definition looks like |
| 428 | this:: |
| 429 | |
| 430 | class DerivedClassName(BaseClassName): |
| 431 | <statement-1> |
| 432 | . |
| 433 | . |
| 434 | . |
| 435 | <statement-N> |
| 436 | |
| 437 | The name :class:`BaseClassName` must be defined in a scope containing the |
| 438 | derived class definition. In place of a base class name, other arbitrary |
| 439 | expressions are also allowed. This can be useful, for example, when the base |
| 440 | class is defined in another module:: |
| 441 | |
| 442 | class DerivedClassName(modname.BaseClassName): |
| 443 | |
| 444 | Execution of a derived class definition proceeds the same as for a base class. |
| 445 | When the class object is constructed, the base class is remembered. This is |
| 446 | used for resolving attribute references: if a requested attribute is not found |
| 447 | in the class, the search proceeds to look in the base class. This rule is |
| 448 | applied recursively if the base class itself is derived from some other class. |
| 449 | |
| 450 | There's nothing special about instantiation of derived classes: |
| 451 | ``DerivedClassName()`` creates a new instance of the class. Method references |
| 452 | are resolved as follows: the corresponding class attribute is searched, |
| 453 | descending down the chain of base classes if necessary, and the method reference |
| 454 | is valid if this yields a function object. |
| 455 | |
| 456 | Derived classes may override methods of their base classes. Because methods |
| 457 | have no special privileges when calling other methods of the same object, a |
| 458 | method of a base class that calls another method defined in the same base class |
| 459 | may end up calling a method of a derived class that overrides it. (For C++ |
| 460 | programmers: all methods in Python are effectively :keyword:`virtual`.) |
| 461 | |
| 462 | An overriding method in a derived class may in fact want to extend rather than |
| 463 | simply replace the base class method of the same name. There is a simple way to |
| 464 | call the base class method directly: just call ``BaseClassName.methodname(self, |
| 465 | arguments)``. This is occasionally useful to clients as well. (Note that this |
| 466 | only works if the base class is defined or imported directly in the global |
| 467 | scope.) |
| 468 | |
| 469 | |
| 470 | .. _tut-multiple: |
| 471 | |
| 472 | Multiple Inheritance |
| 473 | -------------------- |
| 474 | |
| 475 | Python supports a limited form of multiple inheritance as well. A class |
| 476 | definition with multiple base classes looks like this:: |
| 477 | |
| 478 | class DerivedClassName(Base1, Base2, Base3): |
| 479 | <statement-1> |
| 480 | . |
| 481 | . |
| 482 | . |
| 483 | <statement-N> |
| 484 | |
| 485 | For old-style classes, the only rule is depth-first, left-to-right. Thus, if an |
| 486 | attribute is not found in :class:`DerivedClassName`, it is searched in |
| 487 | :class:`Base1`, then (recursively) in the base classes of :class:`Base1`, and |
| 488 | only if it is not found there, it is searched in :class:`Base2`, and so on. |
| 489 | |
| 490 | (To some people breadth first --- searching :class:`Base2` and :class:`Base3` |
| 491 | before the base classes of :class:`Base1` --- looks more natural. However, this |
| 492 | would require you to know whether a particular attribute of :class:`Base1` is |
| 493 | actually defined in :class:`Base1` or in one of its base classes before you can |
| 494 | figure out the consequences of a name conflict with an attribute of |
| 495 | :class:`Base2`. The depth-first rule makes no differences between direct and |
| 496 | inherited attributes of :class:`Base1`.) |
| 497 | |
| 498 | For new-style classes, the method resolution order changes dynamically to |
| 499 | support cooperative calls to :func:`super`. This approach is known in some |
| 500 | other multiple-inheritance languages as call-next-method and is more powerful |
| 501 | than the super call found in single-inheritance languages. |
| 502 | |
| 503 | With new-style classes, dynamic ordering is necessary because all cases of |
| 504 | multiple inheritance exhibit one or more diamond relationships (where one at |
| 505 | least one of the parent classes can be accessed through multiple paths from the |
| 506 | bottommost class). For example, all new-style classes inherit from |
| 507 | :class:`object`, so any case of multiple inheritance provides more than one path |
| 508 | to reach :class:`object`. To keep the base classes from being accessed more |
| 509 | than once, the dynamic algorithm linearizes the search order in a way that |
| 510 | preserves the left-to-right ordering specified in each class, that calls each |
| 511 | parent only once, and that is monotonic (meaning that a class can be subclassed |
| 512 | without affecting the precedence order of its parents). Taken together, these |
| 513 | properties make it possible to design reliable and extensible classes with |
| 514 | multiple inheritance. For more detail, see |
| 515 | http://www.python.org/download/releases/2.3/mro/. |
| 516 | |
| 517 | |
| 518 | .. _tut-private: |
| 519 | |
| 520 | Private Variables |
| 521 | ================= |
| 522 | |
| 523 | There is limited support for class-private identifiers. Any identifier of the |
| 524 | form ``__spam`` (at least two leading underscores, at most one trailing |
| 525 | underscore) is textually replaced with ``_classname__spam``, where ``classname`` |
| 526 | is the current class name with leading underscore(s) stripped. This mangling is |
| 527 | done without regard to the syntactic position of the identifier, so it can be |
| 528 | used to define class-private instance and class variables, methods, variables |
| 529 | stored in globals, and even variables stored in instances. private to this class |
| 530 | on instances of *other* classes. Truncation may occur when the mangled name |
| 531 | would be longer than 255 characters. Outside classes, or when the class name |
| 532 | consists of only underscores, no mangling occurs. |
| 533 | |
| 534 | Name mangling is intended to give classes an easy way to define "private" |
| 535 | instance variables and methods, without having to worry about instance variables |
| 536 | defined by derived classes, or mucking with instance variables by code outside |
| 537 | the class. Note that the mangling rules are designed mostly to avoid accidents; |
| 538 | it still is possible for a determined soul to access or modify a variable that |
| 539 | is considered private. This can even be useful in special circumstances, such |
| 540 | as in the debugger, and that's one reason why this loophole is not closed. |
| 541 | (Buglet: derivation of a class with the same name as the base class makes use of |
| 542 | private variables of the base class possible.) |
| 543 | |
| 544 | Notice that code passed to ``exec``, ``eval()`` or ``execfile()`` does not |
| 545 | consider the classname of the invoking class to be the current class; this is |
| 546 | similar to the effect of the ``global`` statement, the effect of which is |
| 547 | likewise restricted to code that is byte-compiled together. The same |
| 548 | restriction applies to ``getattr()``, ``setattr()`` and ``delattr()``, as well |
| 549 | as when referencing ``__dict__`` directly. |
| 550 | |
| 551 | |
| 552 | .. _tut-odds: |
| 553 | |
| 554 | Odds and Ends |
| 555 | ============= |
| 556 | |
| 557 | Sometimes it is useful to have a data type similar to the Pascal "record" or C |
| 558 | "struct", bundling together a few named data items. An empty class definition |
| 559 | will do nicely:: |
| 560 | |
| 561 | class Employee: |
| 562 | pass |
| 563 | |
| 564 | john = Employee() # Create an empty employee record |
| 565 | |
| 566 | # Fill the fields of the record |
| 567 | john.name = 'John Doe' |
| 568 | john.dept = 'computer lab' |
| 569 | john.salary = 1000 |
| 570 | |
| 571 | A piece of Python code that expects a particular abstract data type can often be |
| 572 | passed a class that emulates the methods of that data type instead. For |
| 573 | instance, if you have a function that formats some data from a file object, you |
| 574 | can define a class with methods :meth:`read` and :meth:`readline` that get the |
| 575 | data from a string buffer instead, and pass it as an argument. |
| 576 | |
| 577 | .. % (Unfortunately, this |
| 578 | .. % technique has its limitations: a class can't define operations that |
| 579 | .. % are accessed by special syntax such as sequence subscripting or |
| 580 | .. % arithmetic operators, and assigning such a ``pseudo-file'' to |
| 581 | .. % \code{sys.stdin} will not cause the interpreter to read further input |
| 582 | .. % from it.) |
| 583 | |
| 584 | Instance method objects have attributes, too: ``m.im_self`` is the instance |
| 585 | object with the method :meth:`m`, and ``m.im_func`` is the function object |
| 586 | corresponding to the method. |
| 587 | |
| 588 | |
| 589 | .. _tut-exceptionclasses: |
| 590 | |
| 591 | Exceptions Are Classes Too |
| 592 | ========================== |
| 593 | |
| 594 | User-defined exceptions are identified by classes as well. Using this mechanism |
| 595 | it is possible to create extensible hierarchies of exceptions. |
| 596 | |
| 597 | There are two new valid (semantic) forms for the raise statement:: |
| 598 | |
| 599 | raise Class, instance |
| 600 | |
| 601 | raise instance |
| 602 | |
| 603 | In the first form, ``instance`` must be an instance of :class:`Class` or of a |
| 604 | class derived from it. The second form is a shorthand for:: |
| 605 | |
| 606 | raise instance.__class__, instance |
| 607 | |
| 608 | A class in an except clause is compatible with an exception if it is the same |
| 609 | class or a base class thereof (but not the other way around --- an except clause |
| 610 | listing a derived class is not compatible with a base class). For example, the |
| 611 | following code will print B, C, D in that order:: |
| 612 | |
| 613 | class B: |
| 614 | pass |
| 615 | class C(B): |
| 616 | pass |
| 617 | class D(C): |
| 618 | pass |
| 619 | |
| 620 | for c in [B, C, D]: |
| 621 | try: |
| 622 | raise c() |
| 623 | except D: |
| 624 | print "D" |
| 625 | except C: |
| 626 | print "C" |
| 627 | except B: |
| 628 | print "B" |
| 629 | |
| 630 | Note that if the except clauses were reversed (with ``except B`` first), it |
| 631 | would have printed B, B, B --- the first matching except clause is triggered. |
| 632 | |
| 633 | When an error message is printed for an unhandled exception, the exception's |
| 634 | class name is printed, then a colon and a space, and finally the instance |
| 635 | converted to a string using the built-in function :func:`str`. |
| 636 | |
| 637 | |
| 638 | .. _tut-iterators: |
| 639 | |
| 640 | Iterators |
| 641 | ========= |
| 642 | |
| 643 | By now you have probably noticed that most container objects can be looped over |
| 644 | using a :keyword:`for` statement:: |
| 645 | |
| 646 | for element in [1, 2, 3]: |
| 647 | print element |
| 648 | for element in (1, 2, 3): |
| 649 | print element |
| 650 | for key in {'one':1, 'two':2}: |
| 651 | print key |
| 652 | for char in "123": |
| 653 | print char |
| 654 | for line in open("myfile.txt"): |
| 655 | print line |
| 656 | |
| 657 | This style of access is clear, concise, and convenient. The use of iterators |
| 658 | pervades and unifies Python. Behind the scenes, the :keyword:`for` statement |
| 659 | calls :func:`iter` on the container object. The function returns an iterator |
| 660 | object that defines the method :meth:`next` which accesses elements in the |
| 661 | container one at a time. When there are no more elements, :meth:`next` raises a |
| 662 | :exc:`StopIteration` exception which tells the :keyword:`for` loop to terminate. |
| 663 | This example shows how it all works:: |
| 664 | |
| 665 | >>> s = 'abc' |
| 666 | >>> it = iter(s) |
| 667 | >>> it |
| 668 | <iterator object at 0x00A1DB50> |
| 669 | >>> it.next() |
| 670 | 'a' |
| 671 | >>> it.next() |
| 672 | 'b' |
| 673 | >>> it.next() |
| 674 | 'c' |
| 675 | >>> it.next() |
| 676 | |
| 677 | Traceback (most recent call last): |
| 678 | File "<stdin>", line 1, in ? |
| 679 | it.next() |
| 680 | StopIteration |
| 681 | |
| 682 | Having seen the mechanics behind the iterator protocol, it is easy to add |
| 683 | iterator behavior to your classes. Define a :meth:`__iter__` method which |
| 684 | returns an object with a :meth:`next` method. If the class defines |
| 685 | :meth:`next`, then :meth:`__iter__` can just return ``self``:: |
| 686 | |
| 687 | class Reverse: |
| 688 | "Iterator for looping over a sequence backwards" |
| 689 | def __init__(self, data): |
| 690 | self.data = data |
| 691 | self.index = len(data) |
| 692 | def __iter__(self): |
| 693 | return self |
| 694 | def next(self): |
| 695 | if self.index == 0: |
| 696 | raise StopIteration |
| 697 | self.index = self.index - 1 |
| 698 | return self.data[self.index] |
| 699 | |
| 700 | >>> for char in Reverse('spam'): |
| 701 | ... print char |
| 702 | ... |
| 703 | m |
| 704 | a |
| 705 | p |
| 706 | s |
| 707 | |
| 708 | |
| 709 | .. _tut-generators: |
| 710 | |
| 711 | Generators |
| 712 | ========== |
| 713 | |
Georg Brandl | cf3fb25 | 2007-10-21 10:52:38 +0000 | [diff] [blame^] | 714 | :term:`Generator`\s are a simple and powerful tool for creating iterators. They |
| 715 | are written like regular functions but use the :keyword:`yield` statement |
| 716 | whenever they want to return data. Each time :meth:`next` is called, the |
| 717 | generator resumes where it left-off (it remembers all the data values and which |
| 718 | statement was last executed). An example shows that generators can be trivially |
| 719 | easy to create:: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 720 | |
| 721 | def reverse(data): |
| 722 | for index in range(len(data)-1, -1, -1): |
| 723 | yield data[index] |
| 724 | |
| 725 | >>> for char in reverse('golf'): |
| 726 | ... print char |
| 727 | ... |
| 728 | f |
| 729 | l |
| 730 | o |
| 731 | g |
| 732 | |
| 733 | Anything that can be done with generators can also be done with class based |
| 734 | iterators as described in the previous section. What makes generators so |
| 735 | compact is that the :meth:`__iter__` and :meth:`next` methods are created |
| 736 | automatically. |
| 737 | |
| 738 | Another key feature is that the local variables and execution state are |
| 739 | automatically saved between calls. This made the function easier to write and |
| 740 | much more clear than an approach using instance variables like ``self.index`` |
| 741 | and ``self.data``. |
| 742 | |
| 743 | In addition to automatic method creation and saving program state, when |
| 744 | generators terminate, they automatically raise :exc:`StopIteration`. In |
| 745 | combination, these features make it easy to create iterators with no more effort |
| 746 | than writing a regular function. |
| 747 | |
| 748 | |
| 749 | .. _tut-genexps: |
| 750 | |
| 751 | Generator Expressions |
| 752 | ===================== |
| 753 | |
| 754 | Some simple generators can be coded succinctly as expressions using a syntax |
| 755 | similar to list comprehensions but with parentheses instead of brackets. These |
| 756 | expressions are designed for situations where the generator is used right away |
| 757 | by an enclosing function. Generator expressions are more compact but less |
| 758 | versatile than full generator definitions and tend to be more memory friendly |
| 759 | than equivalent list comprehensions. |
| 760 | |
| 761 | Examples:: |
| 762 | |
| 763 | >>> sum(i*i for i in range(10)) # sum of squares |
| 764 | 285 |
| 765 | |
| 766 | >>> xvec = [10, 20, 30] |
| 767 | >>> yvec = [7, 5, 3] |
| 768 | >>> sum(x*y for x,y in zip(xvec, yvec)) # dot product |
| 769 | 260 |
| 770 | |
| 771 | >>> from math import pi, sin |
| 772 | >>> sine_table = dict((x, sin(x*pi/180)) for x in range(0, 91)) |
| 773 | |
| 774 | >>> unique_words = set(word for line in page for word in line.split()) |
| 775 | |
| 776 | >>> valedictorian = max((student.gpa, student.name) for student in graduates) |
| 777 | |
| 778 | >>> data = 'golf' |
| 779 | >>> list(data[i] for i in range(len(data)-1,-1,-1)) |
| 780 | ['f', 'l', 'o', 'g'] |
| 781 | |
| 782 | |
| 783 | |
| 784 | .. rubric:: Footnotes |
| 785 | |
| 786 | .. [#] Except for one thing. Module objects have a secret read-only attribute called |
| 787 | :attr:`__dict__` which returns the dictionary used to implement the module's |
| 788 | namespace; the name :attr:`__dict__` is an attribute but not a global name. |
| 789 | Obviously, using this violates the abstraction of namespace implementation, and |
| 790 | should be restricted to things like post-mortem debuggers. |
| 791 | |