I heard that Python has automated "garbage collection" , but C++ does not. What does that mean?
|
|
|||
|
|
|
|
That means that python user doesn't need to clean his dynamic created objects, like you're obligated to do it in C/C++. Example in C++:
in python:
python takes care about "a" object by itself. |
||||||||||||||||
|
|
|
Try reading up on it. |
||
|
|
|
|
From Wikipedia http://en.wikipedia.org/wiki/Garbage_collection_%28computer_science%29: ... Garbage collection frees the programmer from manually dealing with memory allocation and deallocation. As a result, certain categories of bugs are eliminated or substantially reduced:
... The basic principles of garbage collection are:
|
|||
|
|
|
|
Others already answered the main question, but I'd like to add that garbage collection is possible in C++. It's not that automatic like Python's, but it's doable. Smart pointers are probably the simplest form of C++ garbage collecting -
There are also |
||
|
|
|
|
It basically means the way they handle memory resources. When you need memory you usually ask for it to the OS and then return it back. With python you don't need to worry about returning it, with C++ you need to track what you asked and return it back, one is easier, the other performant, you choose your tool. |
||
|
|
|
|
As you have got your answer, now it's better to know the cons of automated garbage collection: it requires large amounts of extra memory and not suitable for hard real-time deadline applications. |
|||
|
|
|
It means you don't allocate and deallocate memory, but that the language does it for you. |
||||||||
|
