+ 1
Can anyone say what is Object oriented programming and also the difference between class and object in OOP's?
2 Antworten
+ 3
Most of your questions can be found in the lessons of the programming language. Here are the related link for python:
https://www.sololearn.com/learn/Python/2467/
From this lesson you can use the “Continue” tab to go to the next lesson.
A general description on OOP you can fond here:
https://en.m.wikipedia.org/wiki/Object-oriented_programming
+ 1
class is like plan of future object, object is realized plan described in class, (but this image is not valid vith static part of class). Basic think in oop is group data ( variables) and functions for this data together as independend reusable code block. Then if objects is similar next think of oop is not programming new object again just use common code and add new or different feature.