Search Results

2
votes

What is the best way to inspect STL containers in Visual Studio debugging?

For vectors, this thread on the msdn forums has a code snippet for set …
10
votes

c++ exception : throwing std::string

Yes. std::exception is the base exception class in the C++ standard library. You may want to avoid using strings as exception classes because they themselves can throw an exception during use. If …
3
votes

Disk-backed STL container classes?

I've never had to do anything quite like this, but It might be possible to do what you want to do by writing a custom allocator that makes use of a memory mapped files to back your data. Se …