Skip to content

Instantly share code, notes, and snippets.

@ozgun
Last active December 18, 2015 00:39
Show Gist options
  • Select an option

  • Save ozgun/5698120 to your computer and use it in GitHub Desktop.

Select an option

Save ozgun/5698120 to your computer and use it in GitHub Desktop.
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