master
Minkra 2023-11-27 17:19:35 +01:00
parent c744258ef3
commit ca68cff91a
5 changed files with 88 additions and 0 deletions

14
Autoo.java Normal file
View File

@ -0,0 +1,14 @@
public class Autoo extends Fahrzeug
{
public Autoo(double m)
{
super(m, 4);
}
public Autoo(){
super(140, 4);
}
}

10
Fahrrad.java Normal file
View File

@ -0,0 +1,10 @@
public class Fahrrad extends Fahrzeug
{
public Fahrrad()
{
super(30, 2);
}
}

35
Fahrzeug.java Normal file
View File

@ -0,0 +1,35 @@
public class Fahrzeug
{
private double position;
private double speed;
private double max;
private int wheels;
public void bewege(double time) {
position += speed * time / 60;
}
public void setGeschwindigkeit(double s) {
this.speed = s;
if (this.speed>this.max){
this.speed = this.max;
}
}
public double getGeschwindigkeit() {
return this.max;
}
public int getAnzahlRaeder(){
return this.wheels;
}
public Fahrzeug(double m,int w) {
this.position = 0;
this.speed = 0;
this.max = m;
this.wheels = w;
}
}

19
Krankenwagen.java Normal file
View File

@ -0,0 +1,19 @@
public class Krankenwagen extends Autoo
{
private boolean blaulicht;
public Krankenwagen()
{
super();
blaulicht = false;
}
public void ein() {
blaulicht = true;
}
public void aus() {
blaulicht = false;
}
}

10
Rennwagen.java Normal file
View File

@ -0,0 +1,10 @@
public class Rennwagen extends Autoo
{
public Rennwagen()
{
super(220);
}
}