I have a method that's about 10 lines of code. I want to create more methods that do the exact same thing except for a calculation that's going to change one line of code. This is a perfect application for passing in a function pointer to replace that one line, but Java doesn't have function pointers. What's my best alternative?
|
15
|
|
|
|
|
|
Anonymous inner class Say you want to have a function passed in with a
A method that takes the pointer would just accept
And would be called like so:
|
||||||||||||||
|
|
|
For each "function pointer", I'd create a small functor class that implements your calculation. Define an interface that all the classes will implement, and pass instances of those objects into your larger function. This is a combination of the "command pattern", and "strategy pattern". @sblundy's example is good. |
|||
|
|
|
|
You need to create an interface that provides the function(s) that you want to pass around. eg:
Then, when you need to pass a function, you can implement that interface:
Finally, the map function uses the passed in Function1 as follows:
You can often use Runnable instead of your own interface if you don't need to pass in parameters, or you can use various other techniques to make the param count less "fixed" but it's usually a trade-off with type safety. (Or you can override the constructor for your function object to pass in the params that way.. there are lots of approaches, and some work better in certain circumstances.) |
|||
|
|
|
|
When there is a predefined number of different calculations you can do in that one line, using an enum is a quick, yet clear way to implement a strategy pattern.
Obviously, the strategy method declaration, as well as exactly one instance of each implementation are all defined in a single class/file. |
||
|
|
|
|
You may also be interested to hear about work going on for Java 7 involving closures: What’s the current state of closures in Java? http://gafter.blogspot.com/2006/08/closures-for-java.html |
|||
|
|
|
|
Sounds like a strategy pattern to me. Check out fluffycat.com Java patterns. |
||
|
|
|
|
If you have just one line which is different you could add a parameter such as a flag and a if(flag) statement which calls one line or the other. |
||
|
|
|
You can also do this (which in some RARE occasions makes sense). The issue (and it is a big issue) is that you lose all the typesafety of using a class/interface and you have to deal with the case where the method does not exist. It does have the "benefit" that you can ignore access restrictions and call private methods (not shown in the example, but you can call methods that the compiler would normally not let you call). Again, it is a rare case that this makes sense, but on those occasions it is a nice tool to have.
|
||
|
|
|
|
Check out lambdaj http://code.google.com/p/lambdaj/ and in particular its new closure feature http://code.google.com/p/lambdaj/wiki/Closures and you will find a very readable way to define closure or function pointer without creating meaningless interface or use ugly inner classes |
||
|
|
