Home » Java Programming » Garbage Collections

When is the Demo object eligible for garbage collection? class Test { private Demo d; void start() { d = new Demo(); this.takeDemo(d); /* Line 7 */ } /* Line 8 */ void takeDemo(Demo demo) { demo = null; demo = new Demo(); } }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!