+ 1
Can someone explain me what is object oriented programming in the most most most simplest words???
4 ответов
+ 3
https://www.sololearn.com/discuss/252198/?ref=app
https://www.sololearn.com/discuss/1599767/?ref=app
https://www.sololearn.com/discuss/491199/?ref=app
https://www.sololearn.com/discuss/1827356/?ref=app
https://www.sololearn.com/discuss/1295886/?ref=app
https://www.sololearn.com/discuss/1359245/?ref=app
https://www.sololearn.com/discuss/1733680/?ref=app
+ 2
In OOP you bind data to functions related to it, and protect it from the rest of the code.
+ 2
OOP: a set of rules and constructs (objects, classes) which help the programmer in two different ways:
(a) inheritance - you can easily reuse, adapt and expand the code written by others
(b) encapsulation - you can hide and isolate some code and associated data without messing with it
0
Brahmanda and Pinda