Python Tutorial 38 --- "Self & __init__() (Constructors)(OOPS 3)"

 Python Tutorial 38 --- "Self & __init__() (Constructors)(OOPS 3)"

Doc ---

In this tutorial, we will be discussing methods and constructors in detail. If you are familiar with any other object-oriented programming language, then the concept will be easy for you to grasp. So, let us begin with the Method.

Method:

A method is just like a function, with a def keyword and a single parameter in which the name of the object has to be passed. The purpose of the method is to show all the details related to the object in a single go. We choose variables that we want the method to take but do not have to pass all of them as parameters. Instead, we have to set the parameters we want to include in the method during its creation. Using methods make the process simpler and a lot faster. 

Self keyword:

The self keyword is used in the method to refer to the instance of the current class we are using. The self keyword is passed as a parameter explicitly every time we define a method.

def read_number(self):
        print(self.num)

__init__ method:-

"__init__" is also called as a constructor in object-oriented terminology. Whereas a constructor is defined as:

"Constructor in Python is used to assign values to the variables or data members of a class when an object is created."

Python treats the constructor differently as compared to C++ and Java. The constructor is a method with a def keyword and parameters, but the purpose of a constructor is to assign values to the instance variables of different objects. We can give the values by accessing each of the variables one by one, but in the case of the constructor, we pass all the values directly as parameters. Self keyword is used to assign value to a constructor too.  

As there can be only one constructor for a specific class, so the name of the constructor is a constant, i.e., __init__.

We declare a constructor in Python using def keyword,

def __init__(self):
    # body of the constructor

Here,

  • The def keyword is used to define the function.
  • The first argument refers to the current object which binds the instance to the init() method.
  • In init() method ,arguments are optional. Constructors can be defined with any number of arguments or with no arguments.

For Example:

class Person:
  def __init__(self, name, age):
    self.name = name
    self.age = age

p1 = Person("John", 36)
print(p1.name) 
#Output: John

Types of constructors in Python

We have two types of constructors in Python.

  1. The default constructor is the one that does not take any arguments.
  2. Constructor with parameters is known as parameterized constructor.

Method vs. Function:

Methods and functions are very similar, yet there are some differences:

  • Methods are explicitly for Object-Oriented programming.
  • The method can only be used by the object that it is called for. In simple terms, for a method, the parameter must be an object.
  • The method can only access the data that is initialized in the class the method is formed in. 
Code --- 
# Self & __init__() (Constructors)

class employee:
no_of_leaves = 8

def __init__(self, aname, asalary, arole):
self.name = aname
self.salary = asalary
self.role = arole

def printdetails(self): # self is a method
return f"Name - {self.name}, Salary - {self.salary}, Role - {self.role}"


saswata = employee("Saswata", 200, "Freelancer")
# saswata.name = "Saswata Kayal"
# saswata.salary = 500, "$"
# saswata.role = "Freelancer"
# saswata.no_of_leaves = employee.no_of_leaves

# tanmoy = employee()
# tanmoy.name = "Tanmoy Mondol"
# tanmoy.salary = 1000, "$"
# tanmoy.role = "Mathematician"
#
# print(saswata.printdetails())
# print(tanmoy.printdetails())

print(saswata.salary)

Comments

Popular posts from this blog

Python Exercise 7 --- "Snake, Water, Gun"

Python Tutorial 24 --- "Using Python External & Built In Modules"