What is Object Decomposition?

后端 未结 3 1478
小蘑菇
小蘑菇 2021-02-14 04:10

I was trying to understand what object decomposition means and read a lot of stuff on internet but every resource talks in terms of lots of keywords that i couldn\'t understand.

3条回答
  •  攒了一身酷
    2021-02-14 04:31

    Imagine, you have Car object. It is very large object, hard to support. You break this objects into smaller responsible for some part of the problem domain:

    • Engine
    • Сabin
    • Boot
    • ...

    That's the decomposition, each of that objects can be broken again, like Cabin consist of Board, Sits, Wheel... Or probably Board consist of Wheel and other parts. Etc.

提交回复
热议问题