Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Newest Agile Design Methods for code construction [closed]

Hallo everybody

Recently I've been reading the book:

"Agile software development, Principles, Patterns and Practices" by Bob Martin

The following (S.O.L.I.D) agile-design-principles are listed within the book:

  • Single Responsibility Principle
  • Open Closed Principle Principle
  • Liskov Substitution Principle
  • Interface Segregation Principle
  • Dependency Inversion Principle

Because of the fact that this book quite old(2003), I have a question:

  1. Are there any other newly developed principles besides the SOLID methods?? If yes, is there any book/site covering these new emerging principles with practical code examples that you could recommend to me??

Of course I can google for some of these.

However, in stackoverflow read and write many profis, so I would like to hear their opinion too :D

like image 724
Harry Avatar asked Dec 29 '22 17:12

Harry


1 Answers

You may want to look at books such as Code Complete and Pragmatic Programmer as they also talk about some excellent development principles.

like image 150
mezoid Avatar answered Jan 16 '23 02:01

mezoid