Classes and objects

17

Transcript of Classes and objects

Page 1: Classes and objects
Page 2: Classes and objects

Disclaimer: This presentation is prepared by trainees of baabtra as a part of mentoring program. This is not official document of baabtra –Mentoring PartnerBaabtra-Mentoring Partner is the mentoring division of baabte System Technologies Pvt . Ltd

Page 3: Classes and objects

CLASSES AND OBJECTS

Page 4: Classes and objects

CLASS• A Class is a way to bind the data and its

associated functions together. • An object is an instance of a class.• Ideas about classes are:– A class can have subclasses that can inherit all or

some of the characteristics of the class.– Subclasses can also define their own methods and

variables that are not part of their superclass.

Page 5: Classes and objects

 ACCESS SPECIFIER

• private -members of a class are accessible only from within other members of the same class

• protected -members are accessible from members of their same class and from members of their derived classes.

• public members are accessible from anywhere where the object is visible

Page 6: Classes and objects

Access Specifier in python• There are only public or private attributes• Private-Anything that starts with two

underscores is private to the class (or module). • Everything else is publicEg:-class Simple(object):

def __init__():self.__x = 0

Page 7: Classes and objects

Declaring a class in pythonclass name: statements

Page 8: Classes and objects

OBJECT• An object that contains information about a

user-defined type

• An object represents an entity in the real world • Distinctly identified• For example, a student, a desk, a circle

• An object has an unique identity, state, and behaviors.– State-properties– Behavior-a set of methods.

Page 9: Classes and objects

Built-In Class Attributes:__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.

Page 10: Classes and objects

Examplesclass class1 :

name = “Classes in Python”difficulty= “easy”

>> print class1.nameClasses in Python>> print class1.difficultyeasy

Page 11: Classes and objects

>> object1 = class1()>> print object1.nameClasses in python

•Defining Methods/functions in classes

class tutorials :

name = “Classes in Python”

difficulty= “easy”

def printname(self,name) :

print self.name

Page 12: Classes and objects

>> you = tutorials()>> me = tutorials()>> you.printname(“aneesh”)

Output

Classes in Python

Page 13: Classes and objects
Page 14: Classes and objects

Output

Page 15: Classes and objects
Page 16: Classes and objects

If this presentation helped you, please visit our page facebook.com/baabtra and like it.

Thanks in advance.

www.baabtra.com | www.massbaab.com |www.baabte.com

Page 17: Classes and objects

Contact Us