Skip to content

Instantly share code, notes, and snippets.

@zindmax
Last active December 23, 2021 18:28
Show Gist options
  • Save zindmax/3acf2b35c2b6a9b57e1950131587f884 to your computer and use it in GitHub Desktop.
Save zindmax/3acf2b35c2b6a9b57e1950131587f884 to your computer and use it in GitHub Desktop.
class Base {
public int x = 0;
}
class Child extends Base{
public int x = 1;
}
public class Main
{
public static void main(String[] args) {
Base base = new Child();
System.out.println(base.x);
Child child = (Child) base;
System.out.println(child.x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment