我正在学习 Java 泛型,我正在尝试修改我开发的一些代码作为练习。
特别是,我开发了一个ArrayVisualizer
类,它使用 Sedgewick 的 StdDraw 库来可视化和动画化动态数组的行为。我有自己的支持泛型的动态数组类,并且我正在尝试将使用扩展ArrayVisualizer
到与该数组类似的任何东西。
简而言之,我的问题是:如何处理包含其他泛型类型的泛型类型?
这是我的思考过程:
- 我开始制作这个界面:
public interface IterableCollection<Item> {
void add(Item i);
Item get(int index) throws IndexOutOfBoundsException; // These can be slow for LinkedList implementations
void set(int index, Item value) throws IndexOutOfBoundsException;
int capacity();
int size(); // Capacity and size can be the same for LinkedList implementations
}
- 然后,我希望我的
ArrayVisualizer
类将任何实现此接口的类作为参数。经过一番谷歌搜索,我发现你不能写
public class ArrayVisualizer<T implements IterableCollection<?> >
但你必须使用扩展。
但是,即使我写了我也不能在我的函数中使用 T 类。
例如,如果我尝试泛化此函数,则会出现编译器错误:
public static void draw(T<String> vector) throws Exception
就像我必须指定 T 也是通用的,但我找不到声明它的方法。我尝试了以下方法,但没有一个有效:
public class ArrayVisualizer<T<?> implements IterableCollection<?> >
public class ArrayVisualizer<T<S> implements IterableCollection<S> >
资源:我已经上传了我的代码的工作非通用版本作为参考。
ArrayVisualizer.java(这需要一些间隔字符串作为输入)
InteractiveArrayVisualizer.java(这个不允许选择单元格的值,但您可以通过单击下一个空白点来填充它们,您可以通过单击最后一个打开的单元格来清空它们。这意味着使用调试助手用于动态数组的大小调整问题)。