如何避免以下代码中的通用警告? Eclipse Generic Warning:类型安全:未选中从T转换为E
有没有办法改进此代码。只需在Stack中添加和删除值。
public static <T, K, E> void genericStack(T a, K b) {
Stack<E> st = new Stack<E>();
st.push((E) a);
st.push((E) b);
b = (K) st.pop();
a = (T) st.pop();
}