constructors in python constructor syntax and usage
play

Constructors in Python Constructor Syntax and Usage Before An - PowerPoint PPT Presentation

Object-oriented Constructors in Python Constructor Syntax and Usage Before An object's attributes must be a: Point = Point() initialized before the object is usable a.x = 10; a.y = 0; A constructor allows you to After 1. Specify


  1. Object-oriented Constructors in Python

  2. Constructor Syntax and Usage Before • An object's attributes must be a: Point = Point() initialized before the object is usable a.x = 10; a.y = 0; • A constructor allows you to After 1. Specify initial values of attributes upon creation of an object a: Point = Point(10, 0) 2. Require certain attributes be decided by the caller of the constructor Defining a constructor • A constructor is a magic method class Point: • Dunder-name is __init__ • Has a first parameter named self • Return type is omitted x: float y: float def __init__(self, x: float, y: float): self.x = x self.y = y

  3. The Semantics of a Constructor Defining a Constructor • A constructor is a magic method • A function defined inside of a class class Point: • Dunder-name is __init__ • Has a first parameter named self x: float • Return type is omitted y: float • A class' constructor is automagically called each time the Classname() call expression def __init__(self, x: float, y: float): is evaluated. self.x = x self.y = y • "Magic" method because you do not call it directly by its name. Using a Class with a Constructor • The programming language runtime calls it in the process of constructing an object. a: Point = Point(10, 0) • The self parameter is automatically assigned a reference to the new Point object on the heap.

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend