Created
June 12, 2025 17:25
-
-
Save kurotori/cba0466c8b5047a7c3ee2c516372654a to your computer and use it in GitHub Desktop.
Ejemplo Herencia Simple en Java
This file contains hidden or 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
public class Auto | |
extends Vehiculo { | |
} |
This file contains hidden or 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
@startuml herencia | |
Class Motor{} | |
Class Rueda{} | |
Class Vehiculo{} | |
Class Auto{} | |
Class Moto{} | |
Class Camión{} | |
Vehiculo *-l- Motor | |
Vehiculo *-r- Rueda | |
Vehiculo <|-- Auto | |
Vehiculo <|-- Moto | |
Vehiculo <|-- Camión | |
@enduml |
This file contains hidden or 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
public class Vehiculo { | |
public String marca = ""; | |
public String modelo = ""; | |
public void encender(){} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment