2015-09-07 11:44:36 -06:00
|
|
|
// interfaces/RandomWords.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
|
|
|
// Implementing an interface to conform to a method.
|
|
|
|
import java.nio.*;
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
public class RandomWords implements Readable {
|
|
|
|
private static Random rand = new Random(47);
|
|
|
|
private static final char[] capitals =
|
|
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZ".toCharArray();
|
|
|
|
private static final char[] lowers =
|
|
|
|
"abcdefghijklmnopqrstuvwxyz".toCharArray();
|
|
|
|
private static final char[] vowels =
|
|
|
|
"aeiou".toCharArray();
|
|
|
|
private int count;
|
|
|
|
public RandomWords(int count) { this.count = count; }
|
|
|
|
@Override
|
|
|
|
public int read(CharBuffer cb) {
|
|
|
|
if(count-- == 0)
|
|
|
|
return -1; // Indicates end of input
|
|
|
|
cb.append(capitals[rand.nextInt(capitals.length)]);
|
|
|
|
for(int i = 0; i < 4; i++) {
|
|
|
|
cb.append(vowels[rand.nextInt(vowels.length)]);
|
|
|
|
cb.append(lowers[rand.nextInt(lowers.length)]);
|
|
|
|
}
|
|
|
|
cb.append(" ");
|
|
|
|
return 10; // Number of characters appended
|
|
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
|
|
Scanner s = new Scanner(new RandomWords(10));
|
|
|
|
while(s.hasNext())
|
|
|
|
System.out.println(s.next());
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
}
|
|
|
|
/* Output:
|
2015-06-15 17:47:35 -07:00
|
|
|
Yazeruyac
|
|
|
|
Fowenucor
|
|
|
|
Goeazimom
|
|
|
|
Raeuuacio
|
|
|
|
Nuoadesiw
|
|
|
|
Hageaikux
|
|
|
|
Ruqicibui
|
|
|
|
Numasetih
|
|
|
|
Kuuuuozog
|
|
|
|
Waqizeyoy
|
2015-09-07 11:44:36 -06:00
|
|
|
*/
|