Languages for servers (Go, D, and more)
ponce via Digitalmars-d
digitalmars-d at puremagic.com
Sat Jul 5 04:46:11 PDT 2014
On Saturday, 5 July 2014 at 06:43:31 UTC, Russel Winder via
Digitalmars-d wrote:
>
> All the C++ folk are saying that with C++14 is you are using
> any heap at
> all you are more than likely doing it wrong. Modern C++ idiom
> is for
> completely new/delete free code.
Minor nitpick, it is indeed devoid of "delete".
But in modern C++ but the _heap_ is still used an awful lot,
everytime a std::vector is copied, everytime a std::string is
concatenated, etc. And it's very much silent. Modern C++ is a
style that makes resource release timely and painless, but still
let a lot of allocations go unchecked.
More information about the Digitalmars-d
mailing list