Einzelnen Beitrag anzeigen

mkinzler
(Moderator)

Registriert seit: 9. Dez 2005
Ort: Heilbronn
39.858 Beiträge
 
Delphi 11 Alexandria
 
#3

Re: Totale Pointer-Verwirrung

  Alt 9. Jan 2006, 13:18
Zitat von rowkajjh:
Was ist denn der Unterschied zwischen 'pDouble' und 'array of double'?
pDouble ist ein Zeigen auf einen Double-Wert. array of double ist ein Array von Double-Werten.

Zitat:
Was ich letztendlich will (ich schreibs mal auf c-isch);

float **map=malloc(maps*sizeof(float*)); // Wieviel maps
map[i]=malloc(w*h*sizeof(float)); // Groesse jeder map

float *src=map[i];
src[x]=1.0f;


Danke und Tschau!
var
map: array of double;
begin
setLength( map, maps); { maps = Anzahl maps }
...
map[x] := 1;
...
end;
Markus Kinzler
  Mit Zitat antworten Zitat