date Software Design Resources
I am a software developer who mainly works with .NET & C#, but I carry interest in many languages.
I'm feeling a bit behind the curve with software design principles and patterns. I'm familiar with the most popular patterns, such as Inversion of Control and Object Relational Mapping, but I've learned of these ideas through books. I reckon the information must emanate from somewhere, and that somewhere must have a blog of some kind.
What are the best resources to help me stay ahead of (or on) the curve of software design?
Many thanks!
A very good list of design principles is in the SOLID principles.
Staying ahead in this area is not about new and shiny methodologies, but about paying attention to the principles of olde, like separation of concerns, coupling and cohesion. Also, test-driven development (or behavior-driven development) might help you achieve better designs through evolution... But you have to know what it looks like to get there!
That said, I find that a good series of articles is in the MSDN Magazine Patterns in Practice.
I am no expert, but one thing that really helps me understand and stay updated with new design patterns and principles is looking at other popular projects.
Downloading a popular open source project and just going through the solution explorer and looking at how the classes are laid out is always a learning experience for me.
链接地址: http://www.djcxy.com/p/79162.html上一篇: 从K&R的“The C Programming Language”学习C语言
下一篇: 最新的软件设计资源