Thread history
From Talk:Main Page
Viewing a history listing
Jump to navigation
Jump to search
Viewing a history listing
Time | User | Activity | Comment |
---|---|---|---|
14:31, 5 November 2012 | Wompi (talk | contribs) | New reply created | (Reply to While loop in the 'run' method) |
14:22, 5 November 2012 | MN (talk | contribs) | New reply created | (Reply to While loop in the 'run' method) |
01:40, 5 November 2012 | Astacus (talk | contribs) | New thread created |
I'm unclear as to when the while
loop in the run
method starts, so I added a debug command there:
while(true) { setDebugProperty("startingWhile", String.format("heading: %.1f° at time %d.", getHeading(), getTime())); ahead(200); // ... }
But to my surprise, this doesn't get displayed until after the ahead
and all the following commands are executed, which I would assume should be the beginning of the second iteration. Is there something that prevents these debug properties from being displayed immediately?
To Wombi: Das ist der Fluch der guten Tat. Ich hoffe, Du bereust nicht, meine Frage beantwortet zu haben.
I never used setDebugProperty. Always used plain System.out.println.
Probably, setDebugProperty value is only used inside "execute" events, like all other setter methods.
MN