Skip to content

Introduction

📖 Object -oriented programming course YouTube - OOP:

Oop_title by Runtimevic -- Víctor Durán Muñoz.


What is Oop?

  • It is a paradigm that makes use of objects for software construction.

    . What is a paradigm?

    • It has different interpretations, it can be a model, example o pattern.
    • Is a form o o style to program.
    • It seeks to capture reality towards the code.

How to think about objects?

  • To focus on Something of reality.
  • Details its attributes, (properties)
  • Details its behaviors (METHODS)
1
2
3
4
5
6
7
8
📱 Example: (Mobile-Smartphone Telephone)

. What attributes (Properties) We recognize? 
    - color.
    - brand.
. What can be done? (METHODS)
    - Make calls.
    - Internet. 
1
2
3
4
5
6
7
8
9
🚗 Example: (Coach)

. What attributes (Properties) We recognize? 
    - color.
    - brand.
. What can be done? (Metodos)
    - drive.
    - curb. 
    - speed up.