-
I often hear programmers talk about how people use object oriented programming in cases where it is totally unnecessary. Isn't this program simple enough that we could just format this as a function? …
-
- class vs 객체
- OOP
- 추상화
- 캡슐화
-
Object oriented programming and design roadmap
https://youtu.be/wWejXusF9qU
-
-
O que você ja leu e ja sabe de OO?
-
-
-
# OOP
## OOP(Object Oriented Programming)란?
OOP란 **객체 지향 프로그래밍** 즉, 절차 지향 프로그래밍이 아닌 **객체의 관점에서 프로그래밍을 한다**는 것이다.
프로그래밍에서 필요한 데이터를 **추상화**시켜 상태와 행위를 가진 **객체**를 만들고 그 객체들 간의 유기적인 **상호…
-
it may be worthwhile to make this an object
It could:
* keep track of the different structures if it is downloading it all in one go
* have methods for loading from pkl, json
* be a bit easier t…
-