Search Results

0
votes

Garbage collectors for C++

The only one I know of is Boehm, which at the bottom is a traditional mark and sweep. It probably uses various techniques to optimize this, but typically incremental/generational/compacting GC's wi …
5
votes

C++ versus D

It really depends on what your needs are - large scale commercial applications written in D does exist on the server side, and for that D (typically using Tango/Mango) is a perfect …
2
votes

C++ Which is faster: Stack allocation or Heap allocation

Probably the biggest problem of heap allocation versus stack allocation, is that heap allocation in the general case is an unbounded operation, and thus you can't use it where timing is an issue. …
10
votes

Does the D programming language have a future?

I certainly think it has a future, otherwise I wouldn't have spent as much time on it as I have, including being part of the project lead of Tango (close to 100 contributors) for more than 2 years …