0
What is the difference between Object-Orientation and Object Modelling?
1 Answer
+ 1
In software development, we try to orientate the problem into smaller objects (every object has a certain task to do).
We can then fill the object (class) with properties, methods, constructors, ... hence we model the object (and initialize them with "new" later on).
This is how I understand it c: