N
Nils
Hi,
I want to create a dynamic array with pointer, without allocation of the
memory.
I tried it so:
objekt **ob= new objekt[size];
It is not working, because he will parameter for the Konstructor ob objekt.
It works in the following way
objekt **ob= (object**) new DWORD[size];
but I get _CrtCheckMemory errors, althought all datas in the array work all
right.
Can anybody help me please, Thank you
Nils
I want to create a dynamic array with pointer, without allocation of the
memory.
I tried it so:
objekt **ob= new objekt[size];
It is not working, because he will parameter for the Konstructor ob objekt.
It works in the following way
objekt **ob= (object**) new DWORD[size];
but I get _CrtCheckMemory errors, althought all datas in the array work all
right.
Can anybody help me please, Thank you
Nils