| ▲ | DashAnimal a day ago | |
Well if you're using the standard library then you're not really paying attention to allocations and deallocations for one. For instance, the use of std::string. So I guess I'm wondering if you work in an industry that avoids std? | ||
| ▲ | jandrewrogers a day ago | parent [-] | |
I work in high-scale data infrastructure. It is common practice to do no memory allocation after bootstrap. Much of the standard library is still available despite this, though there are other reasons to not use the standard containers. For example, it is common to need containers that can be paged to storage across process boundaries. C++ is designed to make this pretty easy. | ||