+1 vote
in JAVA by
Can you guarantee the garbage collection process?

1 Answer

0 votes
by

No, you cannot guarantee the garbage collection, though you can make a request using System.gc() or Runtime.gc() method.

...