Moin Leute!
hab wie oben schon geschrieben ein problem mit pointern :
diese zeile :
Delphi-Quellcode:
synapse[i3].front[0].input := @neuron[i].output;
verlässt der compiler mit dieser meldung :
Access Violation at Address 0044E2BC ... Read of Address FFFFFFFF
hier noch die typen :
Delphi-Quellcode:
type Preal = ^real;
type Tcable = record
input : Preal;
output : real;
conductivity : real;
end;
type Tsynapse = class
front : array of Tcable;
back : array of Tcable ;
...
end;
Type Tneuron = class
output : real;
...
end;
Weiß jemand was hier falsch ist ?