18 lines
446 B
Java
18 lines
446 B
Java
// polymorphism/shape/RandomShapeGenerator.java
|
|
// ©2016 MindView LLC: see Copyright.txt
|
|
// A "factory" that randomly creates shapes.
|
|
package polymorphism.shape;
|
|
import java.util.*;
|
|
|
|
public class RandomShapeGenerator {
|
|
private Random rand = new Random(47);
|
|
public Shape get() {
|
|
switch(rand.nextInt(3)) {
|
|
default:
|
|
case 0: return new Circle();
|
|
case 1: return new Square();
|
|
case 2: return new Triangle();
|
|
}
|
|
}
|
|
}
|