What does the quote "Level of Indirection solves every Problem" mean in Computer Science?
feedback
|
|
Generally it means that by increasing the level of abstraction one can make the problem easier to understand/resolve. Be careful with your abstractions though, the full quote at least as I heard it is, "You can solve every problem with another level of indirection, except for the problem of too many levels of indirection". | |||||||
feedback
|
|
From the book Beautiful Code:
Although this is contradicted by Wikipedia who attributes the phrase to David Wheeler. | |||||
feedback
|
|
Such a very important concept and so few answers here. Generally every problem presented can be solved not necessarily by direct code adjustments but applying some proxy (forget the pattern definition) in some form. The interception &| instrumentation of events is highly undervalued. | |||
|
feedback
|
|
We use indirection when we use a pointer to a value instead of a value directly in our code! | |||
|
feedback
|
|
It basically means that you should break your problem into smaller problems until the problems are easy to solve. You break the problem into several layers :
The routines at the top (the problem solving ones) are indirected / abstracted from the actual means of solving the problem, making them more flexible to solve the same problem a slightly different way later. | ||||
|
feedback
|