J
Jedi84
Gast
Hallo,
ich habe gerade eine Klasse aus einem Buch abgetippt, sie compiliert und wollte dann dasselbe mit dem kleinen Programm dazu machen, funktioniert aber nicht...
hier die Datei WPoint.java:
------------------------------------------------
Jetzt die Datei Prg1.java:
Weiß einer wo der Fehler liegt? Der Compiler sagt "Prog1.java:6: Class WPoint not found in type declaration...
Danke schonmal!
ich habe gerade eine Klasse aus einem Buch abgetippt, sie compiliert und wollte dann dasselbe mit dem kleinen Programm dazu machen, funktioniert aber nicht...
hier die Datei WPoint.java:
Code:
public class WPoint {
static int Anzahl=0;
static java.awt.Color defaultColor=java.awt.Color.black;
double x,y;
boolean isVisible;
public WPoint()
{
this.x=0.0;
this.y=0.0;
this.isVisible = false;
WPoint.Anzahl++;
}
public WPoint(double x, double y)
{
this.x = x;
this.y = y;
this.isVisible = true;
WPoint.Anzahl++;
}
protected void finalize()
{
WPoint.Anzahl--;
}
public static int anzahlElemente()
{
return Anzahl;
}
public void hide()
{
this.isVisible = false;
}
public void show()
{
this.isVisible = true;
}
public void move (double x, double y)
{
this.x = x;
this.y = y;
}
public void movelo (double x, double y)
{
this.x = this.x + x;
this.y = this.y + y;
}
public double getX() {return this.x;}
public double getY() {return this.y;}
public boolean stat() {return this.isVisible;}
}
Jetzt die Datei Prg1.java:
Code:
import java.lang.*;
public class Prg1{
public static void main (String argv[]) {
WPoint meinPunkt = new WPoint(0.5,0.9);
System.out.print(meinPunkt.getX() + ", ");
System.out.print(meinPunkt.getY() + "\n");
}
}
Weiß einer wo der Fehler liegt? Der Compiler sagt "Prog1.java:6: Class WPoint not found in type declaration...
Danke schonmal!