Hey Leute
häng gerade wieder bei einer Fehlermeldung fest und komm nicht weiter...(Hab dieses typische WTF... wat soll da falsch sein^^)
also der Compiler spuckt immer aus:
java:19: cannot find symbol
symbol : method nextFloat()
location: class java.util.Random
koordinate = (int) (getWidth() * random.nextFloat());
und der Code dazu sieht so aus:
ich freu mich schon auf eure Antwort und bedank mich für eure Hilfe
gruss
häng gerade wieder bei einer Fehlermeldung fest und komm nicht weiter...(Hab dieses typische WTF... wat soll da falsch sein^^)
also der Compiler spuckt immer aus:
java:19: cannot find symbol
symbol : method nextFloat()
location: class java.util.Random
koordinate = (int) (getWidth() * random.nextFloat());
und der Code dazu sieht so aus:
Java:
import java.util.Random;
import javax.microedition.lcdui.Canvas;
import javax.microedition.lcdui.Graphics;
public class MatrixCanvas extends Canvas /*implements Runnable*/ {
private static final Random random = new Random();
private int[] koordinate;
private boolean laufend = true;
private boolean pause = false;
private boolean neuerStart = true;
//private Thread canvasThread = null;
public MatrixCanvas() {
koordinate = new int[getHeight()];
for (int i=0; i<koordinate.length; ++i) {
koordinate[i] = (int) (getWidth() * random.nextFloat());
}
}....
ich freu mich schon auf eure Antwort und bedank mich für eure Hilfe
gruss