Should be according to your own experience.
For example,if your software was for real estate,how to make it most easy to change it for human resource?
|
|
Should be according to your own experience. For example,if your software was for real estate,how to make it most easy to change it for human resource?
|
||||||||
|
closed as not a real question by Mark Biek, Stefano Borini, 17 of 26, Manni, LFSR Consulting Jul 22 at 18:30 |
|
|
The most important thing is separation of application-specific code from general code. Whether you are using object oriented design or just have a lot of functions, any generic code that you right should be free of references to a specific application as you can get it. If you know you want to try and reuse code, think of it like you are writing an API. You don't know how you want to use a piece of code in the future, or who will be using it, so you need to make it as free from assumptions as possible. This will make it much easier to use in a future project. |
||
|
|
|
|
Libraries of all sorts are reused over and over. Examples include .NET Framework, STL for C++, CPAN for Perl and many others. |
||
|
|
|
|
Object Orientation? |
||
|
|
|
For my company, the Factory method seems to be the best for code reuse: There are plenty of resources online, here is a link to an MSDN article: http://msdn.microsoft.com/en-us/library/ms954811.aspx |
||
|
|