Problem z przypisywaniem wartości
Ostatnio zmodyfikowano 2009-08-11 14:17
jimmye Temat założony przez niniejszego użytkownika |
Problem z przypisywaniem wartości » 2009-08-11 12:49:08 Wczoraj zacząłem pisać timer, który obsługiwał by kilka zdarzeń czasowych bez zamrarzania programu, oto kod rejestracji zdarzenia: void Timer::Register( TimeEvent * timer ) { if( this->slots < 10 ) { this->timers[ this->slots ]->speed = timer->speed;; this->slots++; } else return; }
deklaracje: class Timer; class TimeEvent;
TimeEvent * timers[ 10 ];
struct TimeEvent { int counter; int speed; bool enabled; TimeEvent(); ~TimeEvent(); };
|
|
DejaVu |
» 2009-08-11 14:17:27 zapewne zmienna timer jest niezainicjowana prawidłowo. |
|
« 1 » |