15 lines
427 B
Java
15 lines
427 B
Java
|
//: arrays/ArrayOfGenericType.java
|
|||
|
// <20>2015 MindView LLC: see Copyright.txt
|
|||
|
// Arrays of generic types won't compile.
|
|||
|
|
|||
|
public class ArrayOfGenericType<T> {
|
|||
|
T[] array; // OK
|
|||
|
@SuppressWarnings("unchecked")
|
|||
|
public ArrayOfGenericType(int size) {
|
|||
|
//! array = new T[size]; // Illegal
|
|||
|
array = (T[])new Object[size]; // "unchecked" Warning
|
|||
|
}
|
|||
|
// Illegal:
|
|||
|
//! public <U> U[] makeArray() { return new U[10]; }
|
|||
|
} ///:~
|