我正在尝试实现通用堆栈。
这是界面
package stack;
public interface Stack<T>{
void push(T number);
T pop();
T peek();
boolean isEmpty();
boolean isFull();
}
这是班级
package stack;
import java.lang.reflect.Array;
import java.util.EmptyStackException;
public class StackArray <T> implements Stack<T>{
private int maxSize;
private T[] array;
private int top;
public StackArray(int maxSize) {
this.maxSize = maxSize;
// @SuppressWarnings("unchecked")
this.array = (T[]) Array.newInstance(StackArray.class, maxSize);
this.top = -1;
}
private T[] resizeArray() {
/**
* create a new array double the size of the old, copy the old elements then return the new array */
int newSize = maxSize * 2;
T[] newArray = (T[]) Array.newInstance(StackArray.class, newSize);
for(int i = 0; i < maxSize; i++) {
newArray[i] = this.array[i];
}
return newArray;
}
public boolean isEmpty() {
return top == -1;
}
public boolean isFull() {
return top == maxSize-1;
}
public void push(T element) {
if(!this.isFull()) {
++top;
array[top] = element;
}
else {
this.array = resizeArray();
array[++top] = element;
}
}
public T pop() {
if(!this.isEmpty())
return array[top--];
else {
throw new EmptyStackException();
}
}
public T peek() {
return array[top];
}
}
这是Main class
package stack;
public class Main {
public static void main(String[] args) {
String word = "Hello World!";
Stack <Character>stack = new StackArray<>(word.length());
// for(Character ch : word.toCharArray()) {
// stack.push(ch);
// }
for(int i = 0; i < word.length(); i++) {
stack.push(word.toCharArray()[i]);
}
String reversedWord = "";
while(!stack.isEmpty()) {
char ch = (char) stack.pop();
reversedWord += ch;
}
System.out.println(reversedWord);
}
}
错误是
Exception in thread "main" java.lang.ArrayStoreException: java.lang.Character
at stack.StackArray.push(StackArray.java:40)
at stack.Main.main(Main.java:14)
第40行是推送方法
array[top] = element;
方面问题: 有什么方法来抑制构造函数中的警告? :)
答案 0 :(得分:5)
潜在的问题是类型擦除。这意味着Stack
类的实例在运行时不知道它的类型参数。这就是为什么你不能在这里使用最自然的解决方案array = new T[maxSize]
。
您尝试使用Array.newInstance(...)
创建数组来解决此问题,但不幸的是,此数组也没有T
类型的元素。在显示的代码中,元素的类型为StackArray
,这可能与您的意图不同。
处理此问题的一种常见方法是在Object
内部使用Stack
数组,并在访问器方法中将任何返回值强制转换为T
类型。
class StackArray<T> implements Stack<T> {
private int maxSize;
private Object[] array;
private int top;
public StackArray(int maxSize) {
this.maxSize = maxSize;
this.array = new Object[maxSize];
this.top = -1;
}
// ... lines removed ...
public T pop() {
if(this.isEmpty())
throw new EmptyStackException();
return element(top--);
}
public T peek() {
if(this.isEmpty())
throw new EmptyStackException();
return element(top);
}
// Safe because push(T) is type checked.
@SuppressWarnings("unchecked")
private T element(int index) {
return (T)array[index];
}
}
另请注意,resizeArray()
方法中存在一个错误,其中maxSize
永远不会分配新值。您实际上并不需要跟踪maxSize
,因为您可以使用array.length
。
我认为当原始代码中的堆栈为空时,peek()
也存在问题。
答案 1 :(得分:2)
您的代码创建StackArray数组,然后您尝试在其中粘贴Character对象,就像您这样做:
static void add(Object arr[], Object o) {
arr[0] = o;
}
public static void main(String[] args) {
StackArray stack[] = new StackArray[1];
Character c = 'x';
add(stack, c);
}