Skip to content

Instantly share code, notes, and snippets.

@ohjongsung
Created March 31, 2018 08:52
Show Gist options
  • Save ohjongsung/f21036eeb71ac4fd9244a6b5fc73ddc4 to your computer and use it in GitHub Desktop.
Save ohjongsung/f21036eeb71ac4fd9244a6b5fc73ddc4 to your computer and use it in GitHub Desktop.
ObjectBox objectBox1 = new ObjectBox();
objectBox1.store(new Melon()); // 컴파일통과
ObjectBox objectBox2 = new ObjectBox():
objectBox2.store(new Apple()); // 컴파일통과
Apple apple = (Apple)objectBox2.getItem(); // 컴파일통과
Melon melon = (Melon)objectBox2.getItem(); // 컴파일통과 런타임오류
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment