in many turorials the first code samples about dynamic memory start along the lines of:
int * pointer;
pointer = new int; // version 1
//OR
pointer = new int [20] // version 2
they always proceed to explain how the second version works, but totally avoid talking about the first version.
what I want to know is, what does pointer = new int create? what can I do with it? what does it mean? Every tutorial without fail will avoid talking about the first version entirely. All I've found out (through messing about) is this:
#include <iostream>
using namespace std;
int main()
{
int * pointer;
pointer = new int;
pointer[2] = 1932; // pointer [2] exists? and i can assign to it?!
cout << pointer[2] << endl; // ... and access it succesfuly?!
};
The fact that i can subscript pointer tells me so far that I pointer = new int implicitly creates an array. but if so, then what size is it?
If someone could help clear this all up for me, I'd be greatful...
new int[n], and not simplynew int. In well over 20 years of C++ programming, I don't think I've ever used an arraynew. – James Kanze May 18 '11 at 17:40