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
Segunda sesión
Search
Ruben Espinosa
July 26, 2015
Programming
0
47
Segunda sesión
Ruben Espinosa
July 26, 2015
Tweet
Share
More Decks by Ruben Espinosa
See All by Ruben Espinosa
RealTime APPS with Rails + Socket.io + Redis
rderoldan1
0
260
Presentación
rderoldan1
0
65
Primera Sesión
rderoldan1
0
54
Docker + DockerCompose
rderoldan1
1
140
Other Decks in Programming
See All in Programming
UbieのAIパートナーを支えるコンテキストエンジニアリング実践
syucream
2
810
CJK and Unicode From a PHP Committer
youkidearitai
PRO
0
100
Langfuseと歩む生成AI活用推進
licux
3
320
ProxyによるWindow間RPC機構の構築
syumai
3
830
TanStack DB ~状態管理の新しい考え方~
bmthd
2
440
旅行プランAIエージェント開発の裏側
ippo012
2
790
Azure SRE Agentで運用は楽になるのか?
kkamegawa
0
1.2k
MCPとデザインシステムに立脚したデザインと実装の融合
yukukotani
3
1.2k
Oracle Database Technology Night 92 Database Connection control FAN-AC
oracle4engineer
PRO
1
380
Namespace and Its Future
tagomoris
6
690
Processing Gem ベースの、2D レトロゲームエンジンの開発
tokujiros
2
120
詳解!defer panic recover のしくみ / Understanding defer, panic, and recover
convto
0
210
Featured
See All Featured
RailsConf 2023
tenderlove
30
1.2k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
44
2.5k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
Writing Fast Ruby
sferik
628
62k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
358
30k
Imperfection Machines: The Place of Print at Facebook
scottboms
268
13k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
111
20k
Making the Leap to Tech Lead
cromwellryan
134
9.5k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
185
54k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
31
2.2k
Transcript
Empezando con Ruby Ruben Espinosa /rderoldan1
Temario Esta presentación mostrará los siguientes temas: 1. Clases 2.
Objetos 3. Atributos 4. Control de acceso 5. Herencia 6. Módulos **TIP Se recomienda leer y aplicar las buenas practicas en la forma de programación especificadas en esta URL https://github.com/bbatsov/ruby-style-guide
Clases
Objeto != Clase
Atributos
Atributos
Atributos
Atributos
Control de acceso (encapsulamiento) Existen tres tipos: 1. Públicos (Valor
por defecto) 2. Protegidos 3. Privados
Herencia