C++ Garbage collection
-
Anyone out there know of any free/open source code that implements a real garbage collector in C++ ? Anyone have any experience with this ?
-
Anyone out there know of any free/open source code that implements a real garbage collector in C++ ? Anyone have any experience with this ?
Here are a few, I think some are free
-
Anyone out there know of any free/open source code that implements a real garbage collector in C++ ? Anyone have any experience with this ?
It works OK until your program relies on more memory than is physically available. After that point every pass the garbage collector makes of your memory you swap every page in the programs memory space. Performance suffers, badly. Its the one thing the vendors don't comment on. Its one reason why large programs (such as CAD and GIS programs) will never get done in C# or Java. Re: All the fuss about should I go .Net or not? Depends on if you are writing very large apps or not. If you are, then beware garbage collection. Stephen