In my code I have
private E[] arrCirc;
and in my constructor I have arrCirc = (E[]) new Object[capacity];
but when I try to compile it I get an warning:
[unchecked] unchecked cast
found : java.lang.Object
required: E[]
Error and I'm not sure why.
public class Array12<E> implements LimCapList<E>{
private int size = 0;
private int capacity = 0;
private int front;
private int back;
private E[] arrCirc;
public Array12(int capacity){
if( capacity <= 0)
throw new IllegalArgumentException();
arrCirc = (E[]) new Object[capacity];
front = 0;
back = 1;
}