> I was a bit surprised and I wonder if Clojure is > effectively generating abstract classes rather than concrete classes? > (Do we have no way to specify the difference? Is that only an artifact > of the Java compiler, not the JVM bytecode?)
I don't think Clojure will generate abstract classes; the compiler would have to set it up as abstract with non-implemented methods as abstract, too (it goes to the bytecode). My guess is you're getting a verify error wit an incomplete class. In these cases it'd be helpful to get automatically generated stubs that throw a not implemented exception, like with proxies. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en