How to use dynamic memory allocation?

closed account (LN7oGNh0)
I know how to declare an array dynamically and a single variable, but I am very bad at using them. (I try to get user input into a dynamically allocated array, but can never understand how to use a loop to show all the user input when a condition has been met.) Also, what are times when they would be used? (Especially with single variables.)

Thanks.
int *px = new int;

std::cout << "Enter a value for x: ";
std::cin >> *px;
std::cout << "Now x is equal to << *px << std::endl;

delete px;

const int N = 10;
int *pa = new int[N];

std::cout << "Enter " << N << " values for array a: ";
for ( int i = 0; i < N; i++ ) std::cin >> pa[i];

std::cout << "Now the array is equal to: ";
for ( int i = 0; i < N; i++ ) std::cout << pa[i] << ' ';
std::cout << std::endl;

delete [] pa;


closed account (zb0S216C)
Hazique35 wrote:
"Also, what are times when they would be used?"

Dynamic Memory Allocation (normally abbreviated to DMA) is used to store large blocks of data that cannot fit on the stack and/or has not business being on the stack. The general rule of thumb is use the stack for simple automatic storage such as "int", "float" and "double" and low-cost structures like this:

1
2
3
4
5
6
struct LowCostStructure
{
    int A_;
    int B_;
    int C_;
};

In other cases, DMA is useful for when you want to reserve some memory prior to its use because that memory may not be available later on. For example, let's say you had 128MB of system memory available and your application needs 100MB of that memory. In addition, let's also say that another application wants 50MB of memory. If your application reserved that memory before the other application, your application would have the memory it needs for when it does actually need it.

DMA is also used to pass information around so that the information is not subject to the scoping rules. For instance, in the following code, "A_" will remain existent until the end of the function.

1
2
3
4
void Function( )
{
    int A_;
}

However, because "A_" is restricted to the scope in which it was defined, we can only work with it while the function is being called -- we could declare it static (but that won't solve anything) or we could declare it global (not recommended as this would create a dependency). This is where DMA comes in. We could allocate space on the heap for "A_", work with "A_" and then return a pointer to "A_" which the calling function can use to refer to "A_'s" memory. For example:

1
2
3
4
5
6
7
8
9
10
11
12
13
int *CreateAndUseA( int InitialValue_ = 0 )
{
    int *A_( ::new int( InitialValue_ ) );
    // Work with A_...
    return( A_ );
}

void DoSomethingWithA( )
{
    int *A_( CreateAndUseA( ) );
    *A_ ... ;
    delete A_;
}

Sure, you could declare "A_" static and return a pointer to it, but as I said, for large structures or large arrays, "A_" would be better off on the heap than the stack anyway.

DMA is also used in:

● Linked-lists, stacks, de/queues, sequence containers, etcetera.
● Polymorphism normally uses the heap.
● Graphics: you need to allocate memory from the GPU.
● Caches.
● Garbage collection.

Wazzak
Last edited on
closed account (LN7oGNh0)
Thanks.
Topic archived. No new replies allowed.