Slashdot Mirror


User: jyz

jyz's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Component design make life easier on Motivating Your Co-Developers? · · Score: 1

    I faced same cases before, It is very hard to have all the programmer produce same high quality code. Various quality code will casue trouble when intergation...

    Component designing make such life much easier, The major isusses will be solved in design phare -- just defining componets and its interfaces... and then ask those guys pick/be-picked up components they like/assigned.

    The beauty of Componet designing are:
    1)It does not require every one know the whole the system, most guys only need to deal with simple context (defined by interface). so it is very easy to assign such component to a new guy, or jonior programmer.
    2)It provide a lot of flexiblity at intergation pharse, if a component sucks. just replace/rewrite
    it.
    3)If your boss push you too much, you can assign a compont to him to help :)

    Hope this helps.