Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 87711
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:26:44+00:00 2026-05-10T22:26:44+00:00

Imagine this sample java class: class A { void addListener(Listener obj); void removeListener(Listener obj);

  • 0

Imagine this sample java class:

class A {     void addListener(Listener obj);     void removeListener(Listener obj); }  class B {     private A a;     B() {         a = new A();         a.addListener(new Listener() {             void listen() {}         }  } 

Do I need to add a finalize method to B to call a.removeListener? Assume that the A instance will be shared with some other objects as well and will outlive the B instance.

I am worried that I might be creating a garbage collector problem here. What is the best practice?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T22:26:45+00:00Added an answer on May 10, 2026 at 10:26 pm

    I just found a huge memory leak, so I am going to call the code that created the leak to be wrong and my fix that does not leak as right.

    Here is the old code: (This is a common pattern I have seen all over)

    class Singleton {     static Singleton getInstance() {...}     void addListener(Listener listener) {...}     void removeListener(Listener listener) {...} }  class Leaky {     Leaky() {         // If the singleton changes the widget we need to know so register a listener         Singleton singleton = Singleton.getInstance();         singleton.addListener(new Listener() {             void handleEvent() {                 doSomething();             }         });     }     void doSomething() {...} }  // Elsewhere while (1) {     Leaky leaky = new Leaky();     // ... do stuff     // leaky falls out of scope } 

    Clearly, this is bad. Many Leaky’s are being created and never get garbage collected because the listeners keep them alive.

    Here was my alternative that fixed my memory leak. This works because I only care about the event listener while the object exists. The listener should not keep the object alive.

    class Singleton {     static Singleton getInstance() {...}     void addListener(Listener listener) {...}     void removeListener(Listener listener) {...} }  class NotLeaky {     private NotLeakyListener listener;     NotLeaky() {         // If the singleton changes the widget we need to know so register a listener         Singleton singleton = Singleton.getInstance();         listener = new NotLeakyListener(this, singleton);         singleton.addListener(listener);     }     void doSomething() {...}     protected void finalize() {         try {             if (listener != null)                 listener.dispose();         } finally {             super.finalize();         }     }      private static class NotLeakyListener implements Listener {         private WeakReference<NotLeaky> ownerRef;         private Singleton eventer;         NotLeakyListener(NotLeaky owner, Singleton e) {             ownerRef = new WeakReference<NotLeaky>(owner);             eventer = e;         }          void dispose() {             if (eventer != null) {                 eventer.removeListener(this);                 eventer = null;             }         }          void handleEvent() {             NotLeaky owner = ownerRef.get();             if (owner == null) {                 dispose();             } else {                 owner.doSomething();             }         }     } }  // Elsewhere while (1) {     NotLeaky notleaky = new NotLeaky();     // ... do stuff     // notleaky falls out of scope } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 119k
  • Answers 119k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer SELECT CAST(f.DateColumn AS VARCHAR(20)) + ' ' + CAST(f.TimeColumn AS… May 11, 2026 at 11:41 pm
  • Editorial Team
    Editorial Team added an answer You could try using SCL code copied with the NOSOURCE… May 11, 2026 at 11:41 pm
  • Editorial Team
    Editorial Team added an answer Did you try the radixtree java project? You might find… May 11, 2026 at 11:41 pm

Related Questions

Imagine a generic class MySet which maintains a parent MySet instance and a child
Imagine you have a large array of floating point numbers, of all kinds of
I have some model objects I'm using in my Java client application. Later these
I'm used to scripting languages. PHP, Javascript etc. and I've written a few relatively

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.