Top "Runtime" questions

Runtime is the time during which a program is running (executing)

Detect if a python module changes and then reload

So I'm developing a rather large python project with a number of modules. The "main" (runnable) module is a daemon (…

python import runtime
Accessing a member on Form may cause a runtime exception because it is a field of a marshal-by-reference class

Accessing a member on Form may cause a runtime exception because it is a field of a marshal-by-reference class I …

.net runtime warnings marshalbyrefobject
PHP exec() performance

The following PHP code does return me a runtime of about 3.5 seconds (measured multiple times and averaged): $starttime = microtime(true); …

php performance runtime exec
C++ static_cast runtime overhead

See the code below. a) Does, in this case (simple inheritance, no virtual members), the static cast in B::df() …

c++ runtime overhead static-cast
C++ Changing HWND Window Procedure in runtime

I'm working in an IDE which creates a hwnd and its respective WndProc LRESULT CALLBACK. I need to change the …

c++ winapi runtime wndproc hwnd
Get type of an object with an object of null?

The following code does compile, but why do I get a run time exception? String b = null; System.out.println(…

java runtime runtime-error
The Best Search Algorithm for a Linked List

I have to write a program as efficiently as possible that will insert given nodes into a sorted LinkedList. I'm …

java algorithm linked-list runtime doubly-linked-list
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 …

java compiler-construction runtime compilation runtime-compilation
Advice on how to catch "attempt to insert nil object" from a device needed

Here is a situation: Hockeyapp and testflight every now and then complain about me "attempting to insert nil object" in …

ios objective-c runtime objective-c-category swizzling