|
|
|
|
|
by jandrewrogers
612 days ago
|
|
Garbage collectors are directly in conflict the requirements of many high-performance software architectures. Some important types of optimization become ineffective. Also, GC overhead remains unacceptably high for many applications; performance-sensitive applications worry about context-switching overhead, and a GC is orders of magnitude worse than that. C++ is usually used when people care about performance, and a GC interferes with that. |
|