What is Object Decomposition?

后端 未结 3 1549
小蘑菇
小蘑菇 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:21

    I think you've basically got it correct -- mapping the "real world" things you'll be working with to representations as objects in your code.

    Sometimes people call this modeling, because they are creating a "model," in code, for things and concepts in the real world, like employees, accounts, birthdays, cameras, etc. -- some physical, others ephemeral, but all needing to be represented as objects in code.

提交回复
热议问题