Search:

Type: Posts; User: henry

Search: Search took 0.07 seconds.

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

    I don't think you get my point.
    When you implement the finalize method for your classes, that means that you are releasing all resources...you are NOT calling the garbage collector...in this case...
  2. Re: Recycling objects from multiple classes that all descend from the same class

    Hi,
    I know that the garbage collector call that method to destroy an object..and you can do it too if you don't want to wait till the garbage collector does that for you.
    I did that before because...
  3. Re: Recycling objects from multiple classes that all descend from the same class

    Hi,
    In java if you want to force the destruction of an object , you have to call the finalize method.
    If those objects are instances of classes that you created, then you have to implement the...
Results 1 to 3 of 3