Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132938 views
License: OTHER
1
Basket b = new Basket();
2
Basket b1 = new Basket<Fruit>();
3
Basket<Fruit> b2 = new Basket<Fruit>();
4
Basket<Apple> b3 = new Basket<Fruit>();
5
Basket<Fruit> b4 = new Basket<Apple>();
6
Basket<?> b5 = new Basket<Apple>();
7
Basket<Apple> b6 = new Basket<?>();
8
9