I\'d like to register开发者_开发知识库 a callback with the JVM so I know when garbage collection is happening.Is there any way to do this?
Freelists are a common way to speed up allocation by reusing existing memory that was already allocated.Is there a way to use free-lists in a concurrent allocator, without incurring the overhead of a
My CF application has a very customized UI, using lots of images as UI elements. The UI feels a lot more smooth when these bitmaps are kept in memory. When they\'re loaded on demand, the UI is slow an
I\'m confused with Heap,Young,Tenured and Perm g开发者_开发百科eneration. Could anyone please explain?The Java garbage collector is referred to as a Generational Garbage Collector. Objects in an app
I\'m trying to debug a simple stop-and-copy garbage collector (written in C) using GDB. The GC works by handling SIGBUS. I\'ve set a breakpoint at the top of my SIGBUS signal handler. I\'ve told GDB t
I have a very complex function in as3. The function is composed of many other functions which are nested inside of it. The main function has variables and all it\'s nested functions also have their ow
Ive been using the loader a lot of upload images into my movieclip. But the only way I know how to do it is load the content, add an event listener, wait for it to finish finish the job in the handl开
I have a library which returns a hierarchical list composed of IDictionary, IList and primitive types (string, and ints). At present I cannot change how this data is returned.
This may likely be an issue with my inexperience using a Managed Language开发者_StackOverflow. The issue essentially is a loop within an objects method, which executes over about 20 seconds, throughou
I was going through this question on an SCJP preparation site . How answer A is correct? What is true about objects referenced by a, b, aa at the line labeled \"// some code goes