+ 2
I have problem with the concept of object oriented programming.
I know the very basic things but i cant comprehend the whole thing and also more complicated codes!any suggestions??
4 Antworten
+ 7
Understanding OOP is tough, understanding any programming paradigm is tough, but do not get discouraged, the best approach is to keep trying and keep applying. Below are a few links that might be helpful:
https://www.freecodecamp.org/news/object-oriented-programming-concepts-21bb035f7260/
https://dev.to/charanrajgolla/beginners-guide---object-oriented-programming
https://realpython.com/python3-object-oriented-programming/
+ 3
Which concepts confuse you?
+ 1
How does the whole process work? What happens actually when we create an object respectively!
+ 1
In, Oops, everything is actually works as an object. Make piller is a class.. A class is a concrete implementation of object and a blueprint for creating an object...
Simply we need to wrap the data and methods which works on those data into a single closed entity of a real world problem or product, entity that is Class whose are operations are manipulated through objects.. Now that able to provide all other Oops principles...
This My understandings, Hope it helps some.. Tq....