Wo sind meine Fahrzeuge

master
SimonDHG 2023-11-27 17:18:31 +01:00
parent 3bd5464fe6
commit f70f07ffbd
6 changed files with 103 additions and 28 deletions

View File

@ -1,31 +1,10 @@
/**
* Beschreiben Sie hier die Klasse Auto.
*
* @author (Ihr Name)
* @version (eine Versionsnummer oder ein Datum)
*/
import java.util.Random;
public class Auto
class Auto extends Fahrzeug
{
int raeder;
String farbe;
public Auto(int r, String f){
Random rand = new Random();
raeder = rand.nextInt(8);
farbe = f;
}
private void hupe(){
System.out.println("Hup-Hup!");
}
public void setzeRaeder(int r){
raeder = r;
}
public void ausgabe(){
System.out.println("Ich bin ein " + farbe + "es Auto!");
}
public Auto(){
super(140, 4);
}
protected Auto(double m ){
super (m, 4);
}
}

31
Auto_alt.java Normal file
View File

@ -0,0 +1,31 @@
/**
* Beschreiben Sie hier die Klasse Auto.
*
* @author (Ihr Name)
* @version (eine Versionsnummer oder ein Datum)
*/
import java.util.Random;
public class Auto_alt
{
int raeder;
String farbe;
public Auto_alt(int r, String f){
Random rand = new Random();
raeder = rand.nextInt(8);
farbe = f;
}
private void hupe(){
System.out.println("Hup-Hup!");
}
public void setzeRaeder(int r){
raeder = r;
}
public void ausgabe(){
System.out.println("Ich bin ein " + farbe + "es Auto!");
}
}

8
Fahrrad.java Normal file
View File

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

32
Fahrzeug.java Normal file
View File

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

18
Krankenwagen.java Normal file
View File

@ -0,0 +1,18 @@
public class Krankenwagen extends Auto
{
private boolean blaulicht;
public Krankenwagen(){
super();
blaulicht = false;
}
public void turnOn()
{
blaulicht = true;
}
public void turnOff(){
blaulicht = false;
}
}

7
Rennwagen.java Normal file
View File

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