up vote 4 down vote favorite
3
share [g+] share [fb]

I'm writing a toy interpreter with a REPL in Java. I'd like to generate bytecode from the language and run that, instead of interpreting an AST and running that instead.

Since my Java is a bit rusty, is it possible to run generated bytecode on the fly on the JVM?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

You can use java.lang.Classloader.defineClass(), which turns bytecode into a Class object. You can the call newInstance() on the resulting Class object, and off you go.

link|improve this answer
feedback

Have a look at Javassist which contains a snippet compiler allowing you to compile Java snippets to bytecode and define them as a method in a class which you can then invoke.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.