Programming Languages and Design Patterns

后端 未结 5 844
礼貌的吻别
礼貌的吻别 2020-12-19 22:40

different programming languages have different features or lack certain features. Design patterns are a way to work around those shortcomings. I have seen the books and list

5条回答
  •  情歌与酒
    2020-12-19 23:22

    Delegates and events in C# and .Net make it trivial to implement the observer pattern, since it is so commonly used, e.g. to handle GUI events.

提交回复
热议问题