Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
11answers
1k views

Defining a class while a Java application is running

In Java, is it possible to create a class definition on the fly while an application is running, and then create an object of that class? For example, a running application would read in a text file ...
10
votes
6answers
4k views

On-the-fly, in-memory java code compilation for Java 5 and Java 6

How can I compile java code from an arbitrary string (in memory) in Java 5 and Java 6, load it and run a specific method on it (predefined)? Before you flame this, I looked over existing ...
9
votes
7answers
3k views

Where would you use C# Runtime Compilation?

I happened upon a brief discussion recently on another site about C# runtime compilation recently while searching for something else and thought the idea was interesting. Have you ever used this? ...
7
votes
4answers
315 views

Online c# interpreter security issues

I am toying around with the idea of building an online C# interpreter, a bit like Codepad. Now there are obvious security issues: Infinite loops System.Diagnostics.Process.Start Pretty much the ...
4
votes
2answers
478 views

scala as scripting language [closed]

Possible Duplicate: “eval” in Scala I know scala is a compiled language, but I do also know that I can dynamically load classes into the jvm, and I can call the scala compiler ...
2
votes
7answers
826 views

Compile and run dynamic code, without generating EXE?

I was wondering if it was possible to compile, and run stored code, without generating an exe or any type of other files, basically run the file from memory. Basically, the Main application, will ...
2
votes
2answers
95 views

Run-time compilation: How is it possible that this isn't a performance hit?

I've heard that some types of runtime compilation aren't a performance hit. The official Python documentation asserts that running a .pyc file is no faster than .py. (I can't find the link right now.) ...
1
vote
1answer
270 views

Compiling C# code from txt file to interface with running wpf application

I have been searching online for a neat way to compile code at runtime and manipulate the running application's objects (properties etc.). I have come across Snippy, CodeDom and CSharpCodeProvider but ...
0
votes
2answers
60 views

Java - accessing strings in non-compiled .java files during runtime

I've got a problem for you. I've got a bunch of Java files (.java) sitting around and they all contain a class declaration and an array of strings. I need to do stuff with the array. What is the best ...
0
votes
4answers
95 views

Compile piece of code dynamically and add it to the current class

I want to create several properties on the fly inside the class' constructor and add them to the current class. The property's template is the following public [PropertyType] [PropertyName] { get ...
0
votes
1answer
393 views

How do I pass parameters in run-time compilation in c#, winforms?

I'm stuck on run-time compilation and CodeDom. Here's a simplified example of what I have so far. public static void Testing() { CodeDomProvider codeProvider = ...
0
votes
1answer
56 views

CompileAssemblyFromDom with many-to-may relation

I have two classes. public class Student{ public List<Course> Courses {get;set;} } public class Course{ public Student Student {get;set;} } I need to compile them each in ...
0
votes
4answers
218 views

Runtime code generation and compilation

Say I have this code that uses some input (e.g. a URL path) to determine which method to run, via reflection: // init map.put("/users/*", "viewUser"); map.put("/users", "userIndex"); // later String ...
0
votes
1answer
137 views

CodeDOM & .Net Modules

How do I programmatically embed a .Net module to the assembly generated by CodeDOM?