Top "Runtime" questions

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

How to get the x and y of a program window in Java?

Is there a way for me to get the X and Y values of a window in java? I read …

java runtime coordinates jna awtrobot
Specifying generic collection type param at runtime

I have: class Car {..} class Other{ List<T> GetAll(){..} } I want to do: Type t = typeof(Car); List&…

c# generics casting runtime
Prevent launching multiple instances of a java application

I want to prevent the user from running my java application multiple times in parallel. To prevent this, I have …

java runtime executable-jar
Is it possible to compile and execute new code at runtime in .NET?

Note: Mathematical expression evaluation is not the focus of this question. I want to compile and execute new code at …

c# .net compilation runtime
During execution, how can a java program tell how much memory it is using?

During execution, how can a java program tell how much memory it is using? I don't care how efficient it …

java memory runtime
What is the Best/Worst/Average Case Big-O Runtime of a Trie Data Structure?

What is the best/worst/average case complexity (in Big-O notation) of a trie data structure for insertion and search? …

data-structures runtime big-o trie
How JVM stack, heap and threads are mapped to physical memory or operation system

The compiler book(The dragon book) explains that value types are created on the stack, and reference types are created …

java c++ memory jvm runtime
Setting java.util.logging.config.file at runtime

I am trying to set the java util logging config file at runtime to avoid having to set it as …

java logging runtime java.util.logging
again "undefined symbol" in runtime, c++

I have a data type and I can instantiate a variable of that type. like this: FetchAddr faddr(VirtualMemoryAddress( 0x0…

c++ runtime undefined-symbol
Swift function swizzling / runtime

Before Swift, in Objective-C I would swizzle or hook methods in a class using <objc/runtime.h>. If …

runtime swift swizzling