InterviewSolution
Saved Bookmarks
| 1. |
How is Rust’s Garbage Collection? |
|
Answer» RUST uses a static garbage collector. It works on the principle of AUTOMATIC MEMORY management which MEANS it automatically recycles the memory that will not be used again. |
|