How to implement Named Parameter idiom in Java? (especially for constructors)
I am looking for an Objective-C like syntax and not like the one used in JavaBeans.
A small code example would be fine.
Thanks.
|
|
|
The best Java idiom I've seem for simulating keyword arguments in constructors is the Builder pattern, described in Effective Java 2nd Edition. The basic idea is to have a Builder class that has setters (but usually not getters) for the different constructor parameters. There's also a The end result looks something like:
To create an instance of Foo you then write something like:
The main caveats are:
You may also want to check out this blog post (not by me). |
|||||||||||||||||||
|
|
this is worth of mentioning
the so called "double brace initializer". actually an anonymous class with instance initializer. |
|||||||||||||
|
|
Java does not support Objective-C-like named parameters for constructors or method arguments. Furthermore, this is really not the Java way of doing things. In java, the typical pattern is verbosely named classes and members. Classes and variables should be nouns and method named should be verbs. I suppose you could get creative and deviate from the Java naming conventions and emulate the Objective-C paradigm in a hacky way but this wouldn't be particularly appreciated by the average Java developer charged with maintaining your code. When working in any language, it behooves you to stick to the conventions of the language and community, especially when working on a team. |
|||||||||||||
|
|
Here's a little variation of the technique given in Joshua Bloch's Effective Java. Here I have made an attempt to make the client code more readable (or perhaps more DSLish).
Please note that with this variation, you can also give meaningful names to your pseudo-constructors. |
|||||||
|
|
You could use a usual constructor and static methods that give the arguments a name:
Usage:
Limitations compared to real named parameters:
If you have the choice look at Scala 2.8. http://www.scala-lang.org/node/2075 |
|||||||||
|
|
If you are using Java 6, you can use the variable parameters and import static to produce a much better result. Details of this are found in: http://zinzel.blogspot.com/2010/07/creating-methods-with-named-parameters.html In short, you could have something like:
|
|||||
|
|
What about
|
|||||
|
|
The idiom supported by the karg library may be worth considering:
|
|||
|
|
|
You could also try to follow advise from here: http://www.artima.com/weblogs/viewpost.jsp?thread=118828
It's verbose on the call site, but overall gives the lowest overhead. |
|||
|