---
title: "How can you force garbage collection?"  
description: "How can you force garbage collection?"  
author: "Anurag Sharma"  
published: 2010-11-10  
updated: 2020-09-17  
canonical: https://www.mindstick.com/interview/225/how-can-you-force-garbage-collection  
category: "java"  
tags: ["java"]  
reading_time: 1 minute  

---

# How can you force garbage collection?

we can't force GC, but could request it by calling System.gc(). JVM does not guarantee that GC will be started immediately

## Answers

### Answer by Anurag Sharma

we can't force GC, but could request it by calling System.gc(). JVM does not guarantee that GC will be started immediately


---

Original Source: https://www.mindstick.com/interview/225/how-can-you-force-garbage-collection

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
