OOP (Python) Flashcards
Advantage of OOP
Better for planning
Source code is written independently of main code
Creates a good framework
Easier to maintain
What is a class in OOP
The class is a blueprint for an object. Made of attributes and methods
What are the attribute
Properties defined within the class. They are private
What are the methods
The procedures or functions are defined in the class. Usually public and can be accessed inside and outside the class
What is instantiation
Creating an object from a class using a constructor
What is encapsulation
Technique of hiding details from the user to reduce code complexity. Way to restrict direct access to the class
What is inheritance
Requires attributes to be protected. But allows for methods and attributes to be passed down to child objects.
Drawn: Child —> Parent
What is polymorphism
In a child object overriding a method or attribute of the parent node
What are the signs for access modifiers in UML OOP
’+’ Public
‘-‘ Private
‘#’ Protected
What is composition
The combination of simpler classes into fusing into a more complex one. Parent class needed as cannot survive on its own.
Drawn using a shaded diamond
What is aggregation
Where the classes have a connection. If the parent class is deleted the lower instance still survives. Drawn using a unshaded diamond