vote up -6 vote down star

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?

flag

40% accept rate
Should be community wiki. – Artem Barger Jul 22 at 18:22
This is very imprecise. Consider clarifying your question? – sangretu Jul 22 at 18:23
What does this even mean? – bebop Jul 22 at 18:23
copy/paste ... filler... – Erich Mirabal Jul 22 at 18:30

closed as not a real question by Mark Biek, Stefano Borini, 17 of 26, Manni, LFSR Consulting Jul 22 at 18:30

4 Answers

vote up 2 vote down

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.

link|flag
vote up 1 vote down

Libraries of all sorts are reused over and over. Examples include .NET Framework, STL for C++, CPAN for Perl and many others.

link|flag
vote up 0 vote down

Object Orientation?

link|flag
is that your final answer? – Erich Mirabal Jul 22 at 18:31
vote up 0 vote down

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

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.