Questions about the release and recycling memory?

You can ask java to run the garbage collector with System.gc() but it will delete only the objects that haven’t any reference inside any other active object.
This mean that if you are storing the terrain data inside an HashMap for example, you have to delete the hashmap before.