Skip to content

Instantly share code, notes, and snippets.

@takahashi-h5
Created August 26, 2019 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takahashi-h5/943fba6511a3fbcc401331bc30bd77ff to your computer and use it in GitHub Desktop.
Save takahashi-h5/943fba6511a3fbcc401331bc30bd77ff to your computer and use it in GitHub Desktop.
class Parent {
public void angry() {
System.out.println("こら");
}
}
class Child extends Parent{
public void sorry() {
System.out.println("ごめん");
}
}
public class Main {
public static void main(String[] args) {
Child chi = (Child) new Parent(); // キャストすればコンパイル通るが、実行時エラーで落ちる
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment