Created
January 30, 2019 12:15
-
-
Save galihlprakoso/cd987391bd45a38af908170f78f28f82 to your computer and use it in GitHub Desktop.
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
package galihlprakoso.com.solidprinciple; | |
/** | |
* | |
* @author galihlarasprakoso | |
*/ | |
class AlatMusik { | |
public void berbunyi(){ | |
System.out.println("Bunyi alat musik..."); | |
} | |
} | |
class Gitar extends AlatMusik{ | |
@Override | |
public void berbunyi(){ | |
System.out.println("Jrengg..."); | |
} | |
} | |
class Biola extends AlatMusik{ | |
@Override | |
public void berbunyi(){ | |
System.out.println("Ngek ngok ngek ngik..."); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment