铸造异常

发布于 2024-10-04 17:53:15 字数 245 浏览 2 评论 0原文

Set cust = customer.getCustomerBills();
Iterator<Customer> seriter = (Iterator)cust;

当我迭代 Set 时,我遇到了强制转换异常。

例外情况是:org.hibernate.collection.PersistentSet 无法转换为 java.util.Iterator。我做错了什么?

Set cust = customer.getCustomerBills();
Iterator<Customer> seriter = (Iterator)cust;

I am facing a casting exception when I iterate on Set.

Exception is: org.hibernate.collection.PersistentSet cannot be cast to java.util.Iterator. What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟花易冷人易散 2024-10-11 17:53:15

您不会将集合强制转换为Iterator。您获得一个:cust.iterator():(

Set<Customer> cust = customer.getCustomerBills();
Iterator<Customer> seriter = cust.iterator();

集合Iterable,它定义了 iterator() 方法。)

You don't cast a collection to Iterator. You obtain one: cust.iterator():

Set<Customer> cust = customer.getCustomerBills();
Iterator<Customer> seriter = cust.iterator();

(A Collection is Iterable, which defines the iterator() method.)

執念 2024-10-11 17:53:15

迭代器 seriter = (Iterator)cust;
不是正确的转换,因此会引发异常。

使用迭代器 seriter = cust.iterator();

Iterator seriter = (Iterator)cust;
is not a proper casting so an exception is being thrown.

use Iterator seriter = cust.iterator();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文