H
Harald
Gast
Code:
public class Me {
static int Vert; // globale Variable
...
...
class Timer extends Thread {
public void run() {
...
...
Me.Vert = x; // x ist hier z.B. 100
} // class Timer-e
public void actionPerformed() {
...
drawLine(Me.Vert, ...... ); // Me.Vert ist Null ( 0 ) ??????? }
} // class Me-e
Hallo,
Wieso übernimmt die globale Variable "Vert" in actionPeformed() nicht den Wert 100 ?
Gruß,
Harald