Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
public class Shark {
2
private int size;
3
4
// constructor
5
public Shark(int size) {
6
this.size = size;
7
}
8
}
9
10
// initializes object
11
Shark erik = new Shark(25);
12
13