Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
Basket b = new Basket();
2
Basket<Apple> bA = b;
3
Basket<Orange> bO = b;
4
bA.setElement(new Apple());
5
Orange orange = bO.getElement();
6
7