Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
LinkedList<Apple> apples = new LinkedList<Apple>();
2
LinkedList<Fruit> fruits = apples;
3
fruits.add(new Banana());
4
5
// Safe at compile time, but it's a Banana!
6
Apple apple = apples.getFirst();
7
8