Skip to content

Instantly share code, notes, and snippets.

@sergeevyi
Created March 24, 2021 10:58
Show Gist options
  • Save sergeevyi/2def1e3a1a7a392d247a4e00ac84fdc8 to your computer and use it in GitHub Desktop.
Save sergeevyi/2def1e3a1a7a392d247a4e00ac84fdc8 to your computer and use it in GitHub Desktop.
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