8
votes
C++ Which is faster: Stack allocation or Heap allocation
Honestly, it's trivial to write a program to compare the performance:
#include <ctime>
#include <iostream>
namespace {
class empty { }; // even empty classes take u …
2
votes
I think STL is causing my application triple its memory usage.
The STL containers exist to abstract away memory operations. If you have a hard memory limit, then you can't really abstract those away.
I would recommend using mmap() to read the file in …
3
votes
Memory Allocation in Recursive C++ Calls
I don't see why you're allocating the memory on the heap to begin with:
Number& recurse(const Number& v1)
{
Number result;
Number one;
// I assume there is a s …
0
votes
Allocating large blocks of memory with new.
The fact that you're getting different behavior when you run the program at different times makes me think that the allocation code isn't the real problem. Instead, somebody else is using the memo …
2
votes
memory allocation in C++
Personally I would use a std::vector<char>. Not only do you get an arbitrary block of bytes ( …
1
vote
Is there a relation between integer and register sizes?
I don't have a copy of the standard, but my old copy of The C Programming Language says (section 2.2) int refers to "an integer, typically reflecting the natural size of inte …
