Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132937 views
License: OTHER
1
Basket<?> b5 = new Basket<Apple>();
2
b5.setElement(new Apple());
3
Apple apple = (Apple) b5.getElement();
4
5