Before we start looking at how we build abstract data types in Python, let's define some import terms and look at some real-world examples.

Similar documents
1. Modules. 13A05806 Python Programming UNIT IV

Modules. The highest level structure of Python Each file with the.py suffix is a module Each module has its own namespace

Overview of OOP. Dr. Zhang COSC 1436 Summer, /18/2017

PYTHON QUICK GUIDE PYTHON OVERVIEW: GETTING PYTHON: FIRST PYTHON PROGRAM: Interactive Mode Programming:

Data Structures (list, dictionary, tuples, sets, strings)

CMSC 132: Object-Oriented Programming II

Programming I. Course 9 Introduction to programming

OBJECT ORIENTED PROGRAMMING

Programming for Engineers in Python

PREPARING FOR THE FINAL EXAM

Object-Oriented Python

A Crash Course in Python Part II. Presented by Cuauhtémoc Carbajal ITESM CEM

Python OOP. Stéphane Vialette. LIGM, Université Paris-Est Marne-la-Vallée. October 19, 2010

Advanced Programming Using Visual Basic 2008

Chapter 11 Object and Object- Relational Databases

PREPARING FOR PRELIM 2

CS 11 python track: lecture 4

CMSC201 Computer Science I for Majors

Lecture 18 Tao Wang 1

Inheritance. Transitivity

Chapter 10 Introduction to Classes

CNRS ANF PYTHON Objects everywhere

CMSC 132: Object-Oriented Programming II

Object-Oriented Programming

Inheritance. Inheritance allows the following two changes in derived class: 1. add new members; 2. override existing (in base class) methods.

Lecture 5. Introduction to Python! Lecture 5

Chapter 12. OOP: Creating Object-Oriented Programs The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill

Chapter 12. OOP: Creating Object- Oriented Programs. McGraw-Hill. Copyright 2011 by The McGraw-Hill Companies, Inc. All Rights Reserved.

Object Oriented Programming is a programming method that combines: Advantage of Object Oriented Programming

GIS 4653/5653: Spatial Programming and GIS. More Python: Statements, Types, Functions, Modules, Classes

PREPARING FOR THE FINAL EXAM

PYTHON. Varun Jain & Senior Software Engineer. Pratap, Mysore Narasimha Raju & TEST AUTOMATION ARCHITECT. CenturyLink Technologies India PVT LTD

Copyright 2016 Ramez Elmasri and Shamkant B. Navathe

Object Oriented Programming in Python 3

Babu Madhav Institute of Information Technology, UTU 2015

CLASSES AND OBJECTS IN JAVA

Contents. I. Classes, Superclasses, and Subclasses. Topic 04 - Inheritance

Public Class ClassName (naming: CPoint)

Object Oriented Programming in Java. Jaanus Pöial, PhD Tallinn, Estonia

Review 2. Classes and Subclasses

Lecture Contents CS313D: ADVANCED PROGRAMMING LANGUAGE. What is Inheritance?

OBJECT ORIENTED PROGRAMMING. Ms. Ajeta Nandal C.R.Polytechnic,Rohtak

Inheritance. Inheritance Reserved word protected Reserved word super Overriding methods Class Hierarchies Reading for this lecture: L&L

Object Oriented Programming

CS260 Intro to Java & Android 03.Java Language Basics

Python A Technical Introduction. James Heliotis Rochester Institute of Technology December, 2009

OOPS Viva Questions. Object is termed as an instance of a class, and it has its own state, behavior and identity.

CS313D: ADVANCED PROGRAMMING LANGUAGE

Week 2. Classes and Objects

COMP519 Web Programming Lecture 21: Python (Part 5) Handouts

STRUCTURING OF PROGRAM

PART A : MULTIPLE CHOICE Circle the letter of the best answer (1 mark each)

Lecture 20. Subclasses & Inheritance

Inheritance. Benefits of Java s Inheritance. 1. Reusability of code 2. Code Sharing 3. Consistency in using an interface. Classes

9 Working with the Java Class Library

Exceptions. raise type(message) raise Exception(message)

Computational Concepts Toolbox. Object Oriented Programming. Today: class. Review: Objects

ECE 364 Software Engineering Tools Laboratory. Lecture 7 Python: Object Oriented Programming

DOWNLOAD PDF CORE JAVA APTITUDE QUESTIONS AND ANSWERS

What is a class? Responding to messages. Short answer 7/19/2017. Code Listing 11.1 First Class. chapter 11. Introduction to Classes

Outline. Outline. 1 Chapter 2: Data Abstraction

INHERITANCE & POLYMORPHISM. INTRODUCTION IB DP Computer science Standard Level ICS3U. INTRODUCTION IB DP Computer science Standard Level ICS3U

Glossary. For Introduction to Programming Using Python By Y. Daniel Liang

G Programming Languages - Fall 2012

OBJECT ORIENTED PROGRAMMING USING C++ CSCI Object Oriented Analysis and Design By Manali Torpe

Chapter 6 Introduction to Defining Classes

Chapter 13 Object Oriented Programming. Copyright 2006 The McGraw-Hill Companies, Inc.

Lecture 21. Programming with Subclasses

Short Notes of CS201

Introduction to Python programming, II

About 1. Chapter 1: Getting started with oop 2. Remarks 2. Examples 2. Introduction 2. OOP Introduction 2. Intoduction 2. OOP Terminology 3.

Object Model Comparisons

Object-Oriented Programming (OOP) Fundamental Principles of OOP

Get Unique study materials from

CS201 - Introduction to Programming Glossary By

COP 3330 Final Exam Review

Graphical Interface and Application (I3305) Semester: 1 Academic Year: 2017/2018 Dr Antoun Yaacoub

C++ (classes) Hwansoo Han

CIS192 Python Programming

User Defined Types. Babes-Bolyai University Lecture 06. Lect Phd. Arthur Molnar. User defined types. Python scope and namespace

Inheritance, and Polymorphism.

CMSC201 Computer Science I for Majors

Lessons on Python Classes and Objects

Interview Questions of C++

Index. object lifetimes, and ownership, use after change by an alias errors, use after drop errors, BTreeMap, 309

Data Abstraction. Hwansoo Han

Inheritance. Lecture 11 COP 3252 Summer May 25, 2017

Object-Oriented Programming Paradigm

Object Oriented Programming #10

Objects and Classes. 1 Creating Classes and Objects. CSCI-UA 101 Objects and Classes

CS304 Object Oriented Programming Final Term

Chapter 11. Abstract Data Types and Encapsulation Concepts ISBN

G Programming Languages Spring 2010 Lecture 9. Robert Grimm, New York University

Super-Classes and sub-classes

CS 112 Intro to Programming Basic OO Concepts

Lecture 18. Classes and Types

CGS 2405 Advanced Programming with C++ Course Justification

Lecture 21. Programming with Subclasses

Microsoft Visual Basic 2005: Reloaded

Standard. Number of Correlations

Transcription:

Exception Handling Python Built-in Exceptions Abstract Data Types You can use a Python tuple to combine two simple values into a compound value. In this case, we use a 2-element tuple whose first element is the snail's time and the second element is its name. We might say that this tuple is an abstract data type, that is, a way of combining Python's basic types (such as floats and strings) into new combinations. The next step is to combine values and functions into an abstract data type. Historically, this is how objectoriented programming arose. The objects are packages containing simpler values inside them. However, in general, these packages can also contain functions. Before we start looking at how we build abstract data types in Python, let's define some import terms and look at some real-world examples. class When we try to represent in our program some items out in the real world, we first look to see which items are similar, and group them into classes. A class is defined by one or more things that share the same qualities. For example, we could define the class of fountains by saying that they are all permanent man-made structures, that they hold water, that they are outdoors in a public place, and that they keep the water in a decorative way. It should be easy to determine whether any item is a member of the class or not, by applying these defining rules. For example, Trevi Fountain in Rome fits all the rules: it is man-made, holds water, is outdoors, and is Page 1

decorative. Lake Geneva has water spraying out of it, but it's not man-made, so it's not a fountain. instance One of the members of a class. For example, the class of airplanes includes the Wright Biplane of 1903, and the Spirit of St. Louis that Charles Lindbergh flew across the Atlantic. An instance is always a single item. Boeing 747 is not an instance, it is a class. However, a specific Boeing 747, with a unique tail number like N1701, is an instance. attribute Since the purpose of most computer applications is in record-keeping, within a program, we must often track specific qualities of an instance, which we call attributes. For example, attributes of an airplane include its wingspan, its manufacturer, and its current location, direction, and airspeed. We can classify attributes into static and dynamic attributes, depending on whether they change or not. For example, the wingspan and model number of an airplane do not change, but its location and velocity can. operations Each class has characteristic operations that can be performed on instances of the class. For example, operations on airplanes include: manufacture; paint; take off; change course; land. For Example : Stack ADT, Queue ADT Page 2

Object Oriented Programming with Python Python has been an object-oriented language since it existed. Because of this, creating and using classes and objects are downright easy. This chapter helps you become an expert in using Python's object-oriented programming support. If you do not have any previous experience with objectoriented OO programming, you may want to consult an introductory course on it or at least a tutorial of some sort so that you have a grasp of the basic concepts. However, here is small introduction of Object-Oriented Programming OOP to bring you at speed Overview of OOP Terminology Class: A user-defined prototype for an object that defines a set of attributes that characterize any object of the class. The attributes are data members. Class variables and instance variables and methods, accessed via dot notation. Class variable: A variable that is shared by all instances of a class. Class variables are defined within a class but outside any of the class's methods. Class variables are not used as frequently as instance variables are. Data member: A class variable or instance variable that holds data associated with a class and its objects. Function overloading: The assignment of more than one behavior to a particular function. The operation performed varies by the types of objects or arguments involved. Instance variable: A variable that is defined inside a method and belongs only to the current instance of a class. Page 3

Inheritance: The transfer of the characteristics of a class to other classes that are derived from it. Instance: An individual object of a certain class. An object obj that belongs to a class Circle, for example, is an instance of the class Circle. Instantiation: The creation of an instance of a class. Method : A special kind of function that is defined in a class definition. Object: A unique instance of a data structure that's defined by its class. An object comprises both data members classvariablesandinstancevariables and methods. Operator overloading: The assignment of more than one function to a particular operator. Creating Classes The class statement creates a new class definition. The name of the class immediately follows the keyword class followed by a colon as follows class ClassName: 'Optional class docum entation string' class_suite The class has a documentation string, which can be accessed via ClassName. doc. The class_suite consists of all the component statements defining class members, data attributes and functions. Example Following is the example of a simple Python class class Em ployee: 'Com m on base class for all em ployees' empcount = 0 Page 4

def init (self, nam e, salary): self.name = name self.salary = salary Em ployee.empcount += 1 def displaycount(self): print "Total Employee %d" % Employee.empCount def displayemployee(self): print "Name : ", self.name, ", Salary: ", self.salary The variable empcount is a class variable whose value is shared among all instances of a this class. This can be accessed as Employee.empCount from inside the class or outside the class. The first method init is a special method, which is called class constructor or initialization method that Python calls when you create a new instance of this class. You declare other class methods like normal functions with the exception that the first argument to each method is self. Python adds the self argument to the list for you; you do not need to include it when you call the methods. Creating Instance Objects To create instances of a class, you call the class using class name and pass in whatever arguments its init method accepts. "This would create first object of Em ployee class" emp1 = Employee("Zara", 2000) "This would create second object of Em ployee class" emp2 = Employee("Manni", 5000) Accessing Attributes You access the object's attributes using the dot operator with object. Class variable would be accessed using class name as follows Page 5

emp1.displayemployee() emp2.displayemployee() print "Total Employee %d" % Employee.empCount Now, putting all the concepts together #!/usr/bin/python class Employee: 'Com m on base class for all employees' empcount = 0 def init (self, name, salary): self.name = name self.salary = salary Em ployee.empcount += 1 def displaycount(self): print "Total Employee %d" % Employee.empCount def displayemployee(self): print "Name : ", self.name, ", Salary: ", self.salary "This would create first object of Employee class" emp1 = Employee("Zara", 2000) "This would create second object of Em ployee class" emp2 = Employee("Manni", 5000) emp1.displayemployee() emp2.displayemployee() print "Total Employee %d" % Employee.empCount When the above code is executed, it produces the following Name : Zara,Salary: 2000 Name : Manni,Salary: 5000 Total Employee 2 You can add, remove, or modify attributes of classes and objects at any time emp1.age = 7 # Add an 'age' attribute. emp1.age = 8 # Modify 'age' attribute. del emp1.age # Delete 'age' attribute. Instead of using the normal statements to access attributes, you can use the following functions The getattrobj, name[, default] : to access the attribute of object. Page 6

The hasattrobj, name : to check if an attribute exists or not. The setattrobj, name, value : to set an attribute. If attribute does not exist, then it would be created. The delattrobj, name : to delete an attribute. hasattr(emp1, 'age') # Returns true if 'age' attribute exists getattr(emp1, 'age') # Returns value of 'age' attribute setattr(emp1, 'age', 8) # Set attribute 'age' at 8 delattr(empl, 'age') # Delete attribute 'age' Built-In Class Attributes Every Python class keeps following built-in attributes and they can be accessed using dot operator like any other attribute dict : Dictionary containing the class's namespace. doc : Class documentation string or none, if undefined. name : Class name. module : Module name in which the class is defined. This attribute is " main " in interactive mode. bases : A possibly empty tuple containing the base classes, in the order of their occurrence in the base class list. For the above class let us try to access all these attributes #!/usr/bin/python class Employee: 'Common base class for all employees' empcount = 0 def init (self, name, salary): self.name = name self.salary = salary Employee.empCount += 1 def displaycount(self): print "Total Employee %d" % Employee.empCount def displayemployee(self): Page 7

print "Name : ", self.name, ", Salary: ", self.salary print "Employee. doc :", Employee. doc print "Employee. nam e :", Employee. name print "Employee. m odule :", Employee. module print "Employee. bases :", Employee. bases print "Employee. dict :", Employee. dict When the above code is executed, it produces the following Employee. doc : Common base class for all employees Employee. name : Employee Employee. module : main Employee. bases : () Employee. dict :{' module ': ' m ain ','displaycount': <function displaycount at 0xb7c84994>, 'em pcount': 2, 'displayem ployee':<function displayemployee at 0xb7c8441c>, ' doc ': 'Common base class for all employees', ' init ': <function init at 0xb7c846bc>} Destroying Objects GarbageCollection Python deletes unneeded objects built intypesorclassinstances automatically to free the memory space. The process by which Python periodically reclaims blocks of memory that no longer are in use is termed Garbage Collection. Python's garbage collector runs during program execution and is triggered when an object's reference count reaches zero. An object's reference count changes as the number of aliases that point to it changes. An object's reference count increases when it is assigned a new name or placed in a container list, tuple, or dictionary. The object's reference count Page 8

decreases when it's deleted with del, its reference is reassigned, or its reference goes out of scope. When an object's reference count reaches zero, Python collects it automatically. a = 40 # Create object <40> b = a # Increase ref. count of <40> c = [b] # Increase ref. count of <40> del a # Decrease ref. count of <40> b = 100 # Decrease ref. count of <40> c[0] = -1 # Decrease ref. count of <40> You normally will not notice when the garbage collector destroys an orphaned instance and reclaims its space. But a class can implement the special method del, called a destructor, that is invoked when the instance is about to be destroyed. This method might be used to clean up any non memory resources used by an instance. Example This del destructor prints the class name of an instance that is about to be destroyed #!/usr/bin/python class Point: def init( self, x=0, y=0): self.x = x self.y = y def del (self): class_name = self. class. name print class_name, "destroyed" pt1 = Point() pt2 = pt1 pt3 = pt1 print id(pt1), id(pt2), id(pt3) #prints the ids of the obejcts del pt1 del pt2 del pt3 When the above code is executed, it produces following 3083401324 3083401324 3083401324 Point destroyed Page 9

Note: Ideally, you should define your classes in separate file, then you should import them in your main program file using import statement. Class Inheritance Instead of starting from scratch, you can create a class by deriving it from a preexisting class by listing the parent class in parentheses after the new class name. The child class inherits the attributes of its parent class, and you can use those attributes as if they were defined in the child class. A child class can also override data members and methods from the parent. Syntax Derived classes are declared much like their parent class; however, a list of base classes to inherit from is given after the class name class SubClassName (ParentClass1[, ParentClass2,...]): 'Optional class docum entation string' class_suite Example #!/usr/bin/python class Parent: # define parent class parentattr = 100 def init (self): print "Calling parent constructor" def parentmethod(self): print 'Calling parent m ethod' def setattr(self, attr): Parent.parentAttr = attr def getattr(self): print "Parent attribute :", Parent.parentAttr class Child(Parent): # define child class def init (self): print "Calling child constructor" def childmethod(self): print 'Calling child m ethod' c = Child() # instance of child Page 10

c.childmethod() # child calls its m ethod c.parentmethod() # calls parent's m ethod c.setattr(200) # again call parent's m ethod c.getattr() # again call parent's m ethod When the above code is executed, it produces the following Calling child constructor Calling child m ethod Calling parent m ethod Parent attribute : 200 Similar way, you can drive a class from multiple parent classes as follows class A: # define your class A... class B: # define your calss B... class C(A, B): # subclass of A and B... You can use issubclass or isinstance functions to check a relationships of two classes and instances. The issubclasssub, sup boolean function returns true if the given subclass sub is indeed a subclass of the superclass sup. The isinstanceobj, Class boolean function returns true if obj is an instance of class Class or is an instance of a subclass of Class Overriding Methods You can always override your parent class methods. One reason for overriding parent's methods is because you may want special or different functionality in your subclass. Example #!/usr/bin/python class Parent: # define parent class def mymethod(self): print 'Calling parent m ethod' Page 11

class Child(Parent): # define child class def mymethod(self): print 'Calling child m ethod' c = Child() # instance of child c.mymethod() # child calls overridden method When the above code is executed, it produces the following Calling child method Base Overloading Methods Following table lists some generic functionality that you can override in your own classes SN Method, Description & Sample Call 1 init self[, args... ] Constructor withanyoptionalarguments Sample Call : obj = classnameargs 2 del self Destructor, deletes an object Sample Call : del obj 3 repr self Evaluatable string representation Sample Call : reprobj 4 str self Printable string representation Sample Call : strobj 5 cmp self, x Object comparison Sample Call : cmpobj, x Page 12

Overloading Operators Suppose you have created a Vector class to represent two-dimensional vectors, what happens when you use the plus operator to add them? Most likely Python will yell at you. You could, however, define the add method in your class to perform vector addition and then the plus operator would behave as per expectation Example #!/usr/bin/python class Vector: def init (self, a, b): self.a = a self.b = b def str (self): return 'Vector (%d, %d)' % (self.a, self.b) def add (self,other): return Vector(self.a + other.a, self.b + other.b) v1 = Vector(2,10) v2 = Vector(5,-2) print v1 + v2 When the above code is executed, it produces the following Vector(7,8) Data/Information Hiding An object's attributes may or may not be visible outside the class definition. You need to name attributes with a double underscore prefix, and those attributes then are not be directly visible to outsiders. Example #!/usr/bin/python class JustCounter: secretcount = 0 def count(self): Page 13

self. secretcount += 1 print self. secretcount counter = JustCounter() counter.count() counter.count() print counter. secretcount When the above code is executed, it produces the following 1 2 Traceback (most recent call last): File "test.py", line 12, in <m odule> print counter. secretcount AttributeError: JustCounter instance has no attribute ' secretcount' Python protects those members by internally changing the name to include the class name. You can access such attributes as object._classname attrname. If you would replace your last line as following, then it works for you... print counter._justcounter secretcount When the above code is executed, it produces the following 1 2 2 Processing math: 100% Page 14