Last active
March 29, 2016 16:25
-
-
Save gsathya/12b1b58b67925277d7fa 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
abstract class Foo { | |
String item; | |
} | |
class Bar extends Foo { | |
@override | |
String item; | |
Bar() { item = "yolo"; } | |
} | |
Vs | |
abstract class Foo { | |
String item; | |
} | |
class Bar extends Foo { | |
Bar() { item = "yolo"; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment