Created
March 24, 2021 10:58
-
-
Save sergeevyi/2def1e3a1a7a392d247a4e00ac84fdc8 to your computer and use it in GitHub Desktop.
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
code problem 2: -1 | |
class GenericEngine {public String engType = "GE-001";} | |
class CombustionEngine extends GenericEngine {public String engType = "CE-002";} | |
class JetEngine extends CombustionEngine {public String engType = "JE-003";} | |
public class Car { | |
public void setEngine(Object o) {System.out.println("I have unknown engine");} | |
public void setEngine(GenericEngine ge) {System.out.printf("I have generic engine: %s", ge.engType);} | |
public void setEngine(CombustionEngine ce) {System.out.printf("I have combustion engine: %s", ce.engType);} | |
public static void main(String[] args) {JetEngine e = new JetEngine(); new Car().setEngine(e);} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment