I know I can instantiate a Java class like this in Clojure:
(new Classname args*)
Suppose I'm handed a list of the args that the constructor uses. How do I instantiate the class then? I can't use apply since new isn't a function.
|
I know I can instantiate a Java class like this in Clojure:
Suppose I'm handed a list of the args that the constructor uses. How do I instantiate the class then? I can't use |
|||
|
|
|
There are two basic approaches:
The second approach is, of course, slightly unwieldy. If you expect to construct a lot of
Finally, if the process of defining factory functions itself needs to be completely dynamic, you can do something like Chouser's second approach to this question: define a function rather than a macro and have it For the sake of completeness, if you're using Clojure 1.3 or later and the Java class involved is actually a Clojure record, then a positional factory function will have already been created under the name of |
|||
|
|