13 lines
343 B
Java
13 lines
343 B
Java
|
//: generics/ByteSet.java
|
|||
|
// <20>2015 MindView LLC: see Copyright.txt
|
|||
|
import java.util.*;
|
|||
|
|
|||
|
public class ByteSet {
|
|||
|
Byte[] possibles = { 1,2,3,4,5,6,7,8,9 };
|
|||
|
Set<Byte> mySet =
|
|||
|
new HashSet<>(Arrays.asList(possibles));
|
|||
|
// But you can't do this:
|
|||
|
// Set<Byte> mySet2 = new HashSet<>(
|
|||
|
// Arrays.<Byte>asList(1,2,3,4,5,6,7,8,9));
|
|||
|
} ///:~
|