Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132938 views
License: OTHER
1
Basket<Fruit> basket = new Basket<Fruit>();
2
basket.setElement(new Apple());
3
Orange orange = (Orange) basket.getElement();
4
5