generated from mate-academy/jv-homework-template
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created a Machine class that contains doWork and stopWork methods.
Created classes Truck, Bulldozer, Excavator that follow methods from Machine. doWork prints that a certain machine has started its work. stopWork prints that certain machines have stopped working. In the MainApp class, a Machine array was created with the Truck, Bulldozer, Excavator methods that output messages from doWork and stopWork.
- Loading branch information
Showing
5 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package core.basesyntax; | ||
|
||
public class Bulldozer extends Machine { | ||
|
||
@Override | ||
public String goWork() { | ||
return "Bulldozer started its work!"; | ||
} | ||
|
||
@Override | ||
public String stopWork() { | ||
return "Bulldozer stopped its work!"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package core.basesyntax; | ||
|
||
public class Excavator extends Machine { | ||
|
||
@Override | ||
public String goWork() { | ||
return "Excavator started its work!"; | ||
} | ||
|
||
@Override | ||
public String stopWork() { | ||
return "Excavator stopped its work!"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package core.basesyntax; | ||
|
||
public abstract class Machine { | ||
|
||
public abstract String goWork(); | ||
|
||
public abstract String stopWork(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
package core.basesyntax; | ||
|
||
public class MainApp { | ||
public static void main(String[] args) { | ||
|
||
Machine truck = new Truck(); | ||
Machine bulldozer = new Bulldozer(); | ||
Machine excavator = new Excavator(); | ||
|
||
String[] matrixMachine = {truck.goWork(),bulldozer.goWork(),excavator.goWork(), | ||
truck.stopWork(), bulldozer.stopWork(), excavator.stopWork()}; | ||
|
||
for (String matrix : matrixMachine) { | ||
System.out.println(matrix); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package core.basesyntax; | ||
|
||
public class Truck extends Machine { | ||
|
||
@Override | ||
public String goWork() { | ||
return "Truck started its work!"; | ||
} | ||
|
||
@Override | ||
public String stopWork() { | ||
return "Truck stopped its work!"; | ||
} | ||
} |