We have a WPF application, based on Unity with MMVVVM pattern. In application life cycle there can be several project life cycles, after each project life cycle we do a manual Tear Down and try to fre
I am updating some old c++ code and am finding that many of the classes are define开发者_StackOverflowd as:
I am writing a statically compiled language and i would like to support garbage collection. before designing it i wo开发者_Go百科uld like to know how i should i deduce when the GC should run?
So, ruby enterprise documentation states that all the values in the GC settings are defined in slots: http://www.rubyenterpriseedition.com/documentation.html#_garbage_collector_performance_tuning
I am new to Java and confused about the garbage collector in Java. What does it actually do and开发者_开发知识库 when does it comes into action. Please describe some of the properties of the garbage c
Consider, pageContext.setAttribute(\"name\", new String(\"Shal\")); String name1= new String(\"Jason\");
I have a java program that uses a weak hashmap for caching some things, if java needs more memory the weak hashmap is cleared. This works fine for me. Now I also have a c# program on the same computer
I am experiencing a memory leak with a code similar to the one below (it\'s a simulation with different inputs at every loop).
From what I\'ve read about cpython it seems like it does reference counting + something extra to detect/free objects pointing to each other.(Correct me if I\'m wrong). Could someone explain the someth
If I call the Object.hashcode() method on some object it returns the internal addre开发者_运维问答ss of the object (default implementation).Is this address a logical or physical address?