Created
March 31, 2018 08:52
-
-
Save ohjongsung/f21036eeb71ac4fd9244a6b5fc73ddc4 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
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