hallo, hab bei meinem programm eine Fehlerausgabe weiß aber nicht warum. hat jemand ne idee?
Fehlerausgabe: cannot find symbol
symbol : method parseInt(double)
location: class java.lang.Integer
int v2 = Integer.parseInt(v1);
^
Fehlerausgabe: cannot find symbol
symbol : method parseInt(double)
location: class java.lang.Integer
int v2 = Integer.parseInt(v1);
^
Code:
public void paint(Graphics g)
{
{
double v;
double v1=Math.round(v) ;
int v2 = Integer.parseInt(v1);
{
g.drawRect(v2,v2,40,40);
}
}
}