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 109971
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T02:09:12+00:00 2026-05-11T02:09:12+00:00

I remembered someone telling me one good one. But i cannot remember it. I

  • 0

I remembered someone telling me one good one. But i cannot remember it. I spent the last 20mins with google trying to learn more.

What are examples of bad/not great code that causes a performance hit due to garbage collection ?

  • 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-11T02:09:13+00:00Added an answer on May 11, 2026 at 2:09 am

    from an old sun tech tip — sometimes it helps to explicitly nullify references in order to make them eligible for garbage collection earlier:

    public class Stack {   private static final int MAXLEN = 10;   private Object stk[] = new Object[MAXLEN];   private int stkp = -1;    public void push(Object p) {stk[++stkp] = p;}    public Object pop() {return stk[stkp--];} } 

    rewriting the pop method in this way helps ensure that garbage collection gets done in a timely fashion:

    public Object pop() {   Object p = stk[stkp];   stk[stkp--] = null;   return p; } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I remember someone telling me that gzipped content is not cached on some browsers?
I do remember seeing someone ask something along these lines a while ago but
When I read this question I remembered someone once telling me (many years ago)
I remember someone telling me that the features of the Easing plugin may now
I remember reading a post by someone at Google with several ballpark statistics such
I remember its look but I can't find it, either here or through Google:
I remember that at one point, it was said that Python is less object
It was something like cMessage I think? I can't remember, could someone help me?
I am currently writing a CMS and remember someone (it might have been on
...as someone may remember, I'm still stuck on C++ strings. Ok, I can write

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.