forked from BruceEckel/OnJava8-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathListMaker.java
More file actions
13 lines (12 loc) · 461 Bytes
/
ListMaker.java
File metadata and controls
13 lines (12 loc) · 461 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
// generics/ListMaker.java
// (c)2016 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
import java.util.*;
public class ListMaker<T> {
List<T> create() { return new ArrayList<>(); }
public static void main(String[] args) {
ListMaker<String> stringMaker = new ListMaker<>();
List<String> stringList = stringMaker.create();
}
}