Search:

Type: Posts; User: PhilTroy

Search: Search took 0.08 seconds.

  1. Re: Recycling objects from multiple classes that all descend from the same class

    Actually I do get your point. But, it doesn't help as finalize is only called when the object is being garbage collected. My problem, unfortunately, is with the objects that are not being garbage...
  2. Re: Recycling objects from multiple classes that all descend from the same class

    Actually, when you call the garbage collector, it is just a request to do garbage collection; it does not actually have to do it then. Likewise, if you haven't properly gotten rid of all references...
  3. Re: Recycling objects from multiple classes that all descend from the same class

    Actually, if you look carefully at the documentation, finalize is called by the garbage collection right before an object is garbage collected; I am pretty sure that the documentation says explicitly...
  4. Getting heap memory errors in recycling objects from multiple classes program

    Hi!

    I am building a simulation engine that creates and uses a couple hundred thousand objects per simulation trial, many of which are only used for a small amount of time. Not unexpectedly, I am...
Results 1 to 4 of 4