gpt4 book ai didi

java - 具有增强 for 循环的 ClassCastException

转载 作者:行者123 更新时间:2023-11-30 08:21:42 27 4
gpt4 key购买 nike

灵感来自一个问题here我在摆弄一个实验性的集合:

/**
* Pretends to be a Collection of samples from the items.
*
* @param <T>
*/
class Samples<T> extends AbstractCollection<T[]> implements Collection<T[]> {

private final int of;
private final T[] items;

public Samples(int of, T... items) {
this.of = of;
this.items = items;
}

@Override
public int size() {
// I know this is wrong.
return items.length * of;
}

@Override
public Iterator<T[]> iterator() {
// Make the iterator on the fly.
return new Iterator<T[]>() {
// Start at the beginning.
int which = 0;

@Override
public boolean hasNext() {
// That's how many there are.
return which < size();
}

@Override
public T[] next() {
// Make my new one by cloning the original.
T[] next = Arrays.copyOf(items, of);
// Pick the items with reference to which.
int count = which;
for (int i = 0; i < of; i++) {
// count mod length is the next one to use.
next[i] = items[count % items.length];
// Used that now.
count /= items.length;
}
// Consumed that one.
which += 1;
return next;
}

};

}

}

public void test() {
Samples<String> samples = new Samples(4, "A", "B", "C", "D", "E");
// Walk it with an iterator.
Iterator<String[]> i = samples.iterator();
while (i.hasNext()) {
System.out.println(Arrays.toString(i.next()));
}
// Walk it using enhanced for loop.
for (String[] s : samples) { // Line 91 - error thrown here.
System.out.println(Arrays.toString(s));
}
}

并且发现,如果我拉出一个 iterator 并运行,一切正常,但如果我尝试使用增强的 for 循环,它会出错:

java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to [Ljava.lang.String;

我是否遗漏了什么 - 也许咖啡不够?

请忽略不正确的 size 方法 - 我确信这不是问题的原因。

PS: jdk = jdk1.8.0_11 但仍然无法使用 jdk1.7.0_65

最佳答案

您实例化了 Samples 的原始类型,因此 Samples.items 的类型将是 Object[] 而不是 String[] 在你的情况下。在您的 test() 方法中:

Samples<String> samples = new Samples(4, "A", "B", "C", "D", "E");

将其更改为:

// Note the diamond operator: <>
Samples<String> samples = new Samples<>(4, "A", "B", "C", "D", "E");

作为旁注:在您的 Samples 类中,您不需要声明您实现了 Collection,因为 AbstractCollection 已经实现了。

关于java - 具有增强 for 循环的 ClassCastException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25013237/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com