Ok, doch nicht gelöste ... (ich bin hier wirklich am verzweifeln)
Ich bekomme nur noch Segmentation fault/wirre Ausgaben ...
mache ich hier was Elementares falsch?
und nein, MainObj wird sonst nirgendwo manipuliert ...
Clund
Ich bekomme nur noch Segmentation fault/wirre Ausgaben ...
mache ich hier was Elementares falsch?
C++:
//als globales Objekt:
Simulation::Objekt **MainObjs;
//in der main:
MainObjs = new Simulation::Objekt*[3];
MainObjs[0] = new Simulation::Objekt( 5,-10,-10, 50, 1);
MainObjs[0]->werte_ausgeben();
Clund