As there is no garbage collection in Delphi, where exactly do you unload variables? Say I have a type with a set of private vars.
VBScript guarantees that the GC will run after every line, so if you create an object and don\'t keep a reference, its destructor will be called at the end of the line. This allows you to do a number
I\'m not looking for the usual \"you can only hint the GC in Java using System.gc()\" answers, this is not at all what this question is about.
I\'m working on a Java server that handles a LOT of very dense traffic. The server accepts packets from clients (often many megabytes) and forwards them to other clients. The server never explicitly s
I have a theory that the CLR garbage collection mechanism means that I can get away with circular references in my object hierarchy without creating deadlocks for teardown and garbage collection. Is t
I\'m trying to understand What the concepts of young, old and permanent generations are in the Java heap terminology, and more specificall开发者_如何学Goy the interactions between the three generation
I am a bit confused about the fact that in C# only the reference types get garbage collected. That means GC picks only the reference types for memory de-allocation.
As we know the java\'s garbage collector is a low priority thread. And in java we can create any thread with high priority. So is it possible to have our own customized garbage collector thread with v
I am currently working on an application in C# that runs on an infinite loop with a Thread.Sleep call after each iteration of the other method calls.My main is -
For example, in the below code an \'image\'object will be created and then garbage collected at some unknown point in the future