Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download

📚 The CoCalc Library - books, templates and other resources

Views: 96144
License: OTHER
1
public class AbstractClass {
2
int templateMethod() {
3
return simpleOperation1() * simpleOperation2();
4
}
5
6
int simpleOperation1() {
7
return 2;
8
}
9
10
int simpleOperation2() {
11
return 3;
12
}
13
}
14
15