Last active
August 24, 2021 21:31
-
-
Save Rillwz/49c4d75ce24a400826753a80ca8d24e6 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
| // Implementasi Abstract Class | |
| // Abstract_Class_Pointer = Name of abstract_Class | |
| abstract class Bicara{ | |
| void say(); | |
| } | |
| class HelloWorld Extends Bicara { | |
| @override | |
| void say() { | |
| print('something'); | |
| } | |
| } | |
| method say(); di class Bicara(); Akan tertimpa | |
| dengan method say(); di class HelloWorld. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment