View Single Post
Old 08-18-2004, 02:46 AM   #5 (permalink)
RelaX
Follower of Ner'Zhul
 
RelaX's Avatar
 
Location: Netherlands
Quote:
Originally Posted by username
Adding to what RelaX says, you will always do something wrong the first time you program it. This is why there are multiple versions and programming techniques like refactoring. Once you learn how to do it, a better way is almost always found.
So true... which is why OOP and spending lots of time on design is so crucial. In theory, if you do those perfect, then if you find a better way for a method or object to handle it's responsibilities, then you have to spend only a small amount of time to re-implement those methods and objects.

The real problems are changes in the design though. Even with proper OOP, if your design is seriously flawed, then it WILL mean lots of cursing and shouting at the pc trying to right the wrong and you'll probably end up with a real hackjob.
__________________
The most likely way for the world to be destroyed, most experts agree, is by accident. That's where we come in; we're computer professionals. We cause accidents.
- Nathaniel Borenstein
RelaX is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73