14 lines
258 B
Java
14 lines
258 B
Java
|
package encapsulationInheritancePolymorphism.polymorphism;
|
||
|
|
||
|
public class ElectricEngine extends Engine {
|
||
|
private String batteryType;
|
||
|
|
||
|
public int getPower() {
|
||
|
return 20;
|
||
|
}
|
||
|
|
||
|
/*private class Engine {
|
||
|
private int power;
|
||
|
}*/
|
||
|
}
|