gpt4 book ai didi

Java 转换 ArrayIterator
转载 作者:行者123 更新时间:2023-12-02 07:06:45 25 4
gpt4 key购买 nike

queryMe 方法返回一个 ArrayIterator 。 queryYou 方法返回 ArrayIterator

public ArrayIterator<Object> query(String table, String field, String criterion)
{
ArrayIterator<Object> result = null;

if (table.equals("MyTable")
{
result = MyTable.queryMe(field, criterion);
}
else if (table.equals("YourTable")
{
result = YourTable.queryYou(field, criterion);
}

return result;
}

我收到一条错误消息

ArrayIterator<Me> and ArrayIterator<Java.lang.object> are incompatible types.

有什么建议吗?

最佳答案

您无法转换它,因为 ArrayIterator<Me>不是 ArrayIterator<Java.lang.object> 的子类型事实上,这两种类型并不相关。

Find more explanation .

关于Java 转换 ArrayIterator<Object>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16002037/

25 4 0