Last active
December 18, 2015 00:39
-
-
Save ozgun/5698120 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
| public class DowncastingExample { | |
| public static void main(String args[]) { | |
| Object a = new Hayvan(); | |
| Hayvan b = (Hayvan) a; // aşağıya çevirim, downcasting | |
| } | |
| } | |
| class Hayvan { | |
| public static int x = 1; | |
| } | |
| class Kedi extends Hayvan { | |
| public static int x = 1; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment