What is the difference between Object-Oriented Modeling and Object-Oriented Programming? I overheard a conversation on my subway train this morning and it seems that these things are different. Aren't they?
|
Object-Oriented Modeling refers to the process where you are designing how the code will look like. You will use a modeling language like UML to do Object-Oriented Modeling. Object-Oriented Programming refers to a programming paradigm where you use objects. These objects have been designed during the desing phase using Object-Oriented Modeling techniques, and they are implemented during the construction (programming phase) using a language that supports Object-Oriented programming and based on the model. |
|||
|
|
|
Modeling is creating an abstraction of a problem, where as programming is the implementation of such an abstraction. Modeling can be done in many ways: textual, formulas, diagrams... UML is one standard of modeling object oriented concepts. Programming can be done in different ways too, depending on the tool, language etc. There are ways to generate the program right out of the modeling tool, typically out of UML models. This goes even a step further, where UML models are "executed" directly. Other common confusions about object-oriented programming exist too - starting from "it's the thing where your drag and click", over hybrid 3rd generation concepts I refer to as "processing Objects" to practical patterns and ending with pure OOP. |
|||
|
|
|
I'd say the modeling precludes the programing, where the modeling is the physical design, before the programming is implemented. |
|||
|
|
|
I just found this:
|
|||
|
|
|
Object-Oriented Modeling is used to define, usually without any actual code, the classes, methods, and variables. There are many tools out there to help with such modelling. Netbeans is one such package. Netbeans can help you model your code and will even attempt to help you get started after you make your class diagrams. |
|||
|
|
|
I found this extraction is from the DTMF website about Key concepts of object oriented modeling.
|
|||
|
|
|
Well, given that code is a means of communicating, object-oriented programming in an object-oriented programming language is a form of modelling. One can however model at a more abstract level using modelling languages that are less expressive, but perhaps more useful for other purposes. For the purposes of developing software, modelling not relatively closely tied to programmes is mainly an exercise for a certain class of person who thinks it is terribly important, and is paid as if it were, but it is not. |
|||
|
|