OnJava8-Examples/generics/BankTeller.java

62 lines
1.8 KiB
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// generics/BankTeller.java
2015-12-15 11:47:04 -08:00
// (c)2016 MindView LLC: see Copyright.txt
2015-11-15 15:51:35 -08:00
// We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
2015-06-15 17:47:35 -07:00
// A very simple bank teller simulation.
import java.util.*;
2015-11-03 12:00:44 -08:00
import java.util.function.*;
2015-06-15 17:47:35 -07:00
class Customer {
private static long counter = 1;
private final long id = counter++;
private Customer() {}
@Override
public String toString() { return "Customer " + id; }
2015-11-03 12:00:44 -08:00
// A method to produce Supplier objects:
public static Supplier<Customer> generator() {
2015-06-15 17:47:35 -07:00
return Customer::new; // Constructor reference
}
}
class Teller {
private static long counter = 1;
private final long id = counter++;
private Teller() {}
@Override
public String toString() { return "Teller " + id; }
2015-11-03 12:00:44 -08:00
// A single Supplier object:
public static Supplier<Teller> generator = Teller::new;
2015-06-15 17:47:35 -07:00
}
public class BankTeller {
public static void serve(Teller t, Customer c) {
System.out.println(t + " serves " + c);
}
public static void main(String[] args) {
Random rand = new Random(47);
Queue<Customer> line = new LinkedList<>();
2015-11-03 12:00:44 -08:00
Suppliers.fill(line, Customer.generator(), 15);
2015-06-15 17:47:35 -07:00
List<Teller> tellers = new ArrayList<>();
2015-11-03 12:00:44 -08:00
Suppliers.fill(tellers, Teller.generator, 4);
2015-06-15 17:47:35 -07:00
for(Customer c : line)
serve(tellers.get(rand.nextInt(tellers.size())), c);
}
2015-09-07 11:44:36 -06:00
}
/* Output:
2015-06-15 17:47:35 -07:00
Teller 3 serves Customer 1
Teller 2 serves Customer 2
Teller 3 serves Customer 3
Teller 1 serves Customer 4
Teller 1 serves Customer 5
Teller 3 serves Customer 6
Teller 1 serves Customer 7
Teller 2 serves Customer 8
Teller 3 serves Customer 9
Teller 3 serves Customer 10
Teller 2 serves Customer 11
Teller 4 serves Customer 12
Teller 2 serves Customer 13
Teller 1 serves Customer 14
Teller 1 serves Customer 15
2015-09-07 11:44:36 -06:00
*/