Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download

📚 The CoCalc Library - books, templates and other resources

Views: 96145
License: OTHER
1
import java.util.LinkedList;
2
3
public class ConcreteClass extends AbstractClass {
4
@Override
5
int simpleOperation1() {
6
return 5;
7
}
8
9
@Override
10
int simpleOperation2() {
11
return 7;
12
}
13
14
public void testMe(int aVariable, double bT, LinkedList<Integer> c) {
15
System.out.println("Test!" + aVariable + bT + c);
16
}
17
}
18
19