Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Object Oriented Programming \w Java
Search
Henoc Díaz
June 29, 2015
Programming
1
190
Object Oriented Programming \w Java
DevF Batch 5 - Introduction to OOP with Java.
Henoc Díaz
June 29, 2015
Tweet
Share
More Decks by Henoc Díaz
See All by Henoc Díaz
Mocking en Python
henocdz
0
130
Productivity and Bash
henocdz
3
190
Una vida a través de las comunidades
henocdz
0
89
Introducción a Celery
henocdz
1
200
Taller Python en Español
henocdz
0
150
Introducción a Elixir
henocdz
0
130
Django
henocdz
1
120
A Full Introduction to Python
henocdz
2
210
Other Decks in Programming
See All in Programming
AWS Infrastructure as Code の新機能 2025 総まとめ 〜SA 4人による怒涛のデモ祭り〜
konokenj
10
3k
Ruby x Terminal
a_matsuda
5
530
Rubyと楽しいをつくる / Creating joy with Ruby
chobishiba
0
200
Go1.26 go fixをプロダクトに適用して困ったこと
kurakura0916
0
320
猫の手も借りたい!ので AIエージェント猫を作って社内に放した話 Claude Code × Container Lambda の Slack Bot "DevNeko"
naramomi7
0
230
AI時代のソフトウェア開発でも「人が仕様を書く」から始めよう-医療IT現場での実践とこれから
koukimiura
0
120
New in Go 1.26 Implementing go fix in product development
sunecosuri
0
110
AI巻き込み型コードレビューのススメ
nealle
2
2.5k
Event Storming
hschwentner
3
1.3k
今更考える「単一責任原則」 / Thinking about the Single Responsibility Principle
tooppoo
3
1.2k
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
120
Python’s True Superpower
hynek
0
190
Featured
See All Featured
Leo the Paperboy
mayatellez
4
1.5k
So, you think you're a good person
axbom
PRO
2
1.9k
Utilizing Notion as your number one productivity tool
mfonobong
4
240
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.6k
How to Build an AI Search Optimization Roadmap - Criteria and Steps to Take #SEOIRL
aleyda
1
1.9k
Abbi's Birthday
coloredviolet
2
5k
Paper Plane (Part 1)
katiecoart
PRO
0
5k
The innovator’s Mindset - Leading Through an Era of Exponential Change - McGill University 2025
jdejongh
PRO
1
110
How to Talk to Developers About Accessibility
jct
2
140
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.6k
WENDY [Excerpt]
tessaabrams
9
36k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
10
1.1k
Transcript
Object Oriented Programming OOP / POO
Todo es un objeto
Ventajas • Facilidad de diseño • Abstracción de problemas reales
• Reutilizar código • Mantenibilidad del código
Clase Template donde se definen las características y acciones de
todos los objetos del mismo tipo.
Métodos Acciones que puede realizar una instancia
Propiedades Características propias de una instancia
Instancia También conocida como objeto
Constructores Crea la instancia e inicializa atributos
Tipos de constructores
Constructor por omisión
Constructor por parámetros
this.* Hace referencia a la instancia sobre la que se
utiliza
Lenguajes …
Java
None
None
None
Java Boilerplate Clase y archivo que la contiene, llevan el
mismo nombre.
Compilar & Ejecutar
Classpath (-cp) Indica en dónde buscar clases y paquetes definidos
por el usuario.
A practicar…