Have you ever created or encountered a self modifying code in Java? If yes, then please post the link or simply post the code.
feedback
|
|
Ignoring the world of grief you could be causing yourself via self-modifying code(!), it seems to me there are 3 options:
Of the three above, my initial choice (in the absence of requirements) would be to take a look at option 3. I suspect it's the least painful way to start. I've used all of the above - unfortunately I can't post links to client code. | ||||
|
feedback
|
|
You can write (Java) code that generates new classes (byte code) at runtime using a library like bcel. That's not quite the same as self-modifying code. I suspect self-modifying code is not something the JVM supports. For an example of generating new code at runtime, have a look at the source code of clojure. | |||
|
feedback
|
|
I see these options for this purpose:
Edit: I once created a Java 1.4 program which took business rules from an existing legacy database, generated java files (basically implementations of a Predicate interface) with a bunch of println() from them and used the command line javac to compile them. | ||||
|
feedback
|
|
That should be difficult to realize. But you can create at runtime new classes and load them with a custom classloader. If you want to modify the code again, you have to reload the class. | |||
|
feedback
|
|
From BCEL:
| |||||
feedback
|
|
As an undergrad I got to work on the JikesRVM. It is a JVM implemented (mostly) in Java. At runtime it will JIT compile itself! It's a really cool piece of technology. | |||
|
feedback
|
|
You could always just use a dynamic language... | |||||||
feedback
|