gpt4 book ai didi

java - 设置名称时类转换异常

转载 作者:太空宇宙 更新时间:2023-11-04 06:36:50 25 4
gpt4 key购买 nike

我在设置名称时遇到强制转换异常。

        Object[] customers= customerRepository.getCustomerName(Id);     
Customer row = new Customer();
row.setName((String) customers[0]+" "+(String) customers[1]);

异常(exception)情况是:

HTTP Status 500 - Request processing failed; 
nested exception is java.lang.ClassCastException:
[Ljava.lang.Object; cannot be cast to java.lang.String

最佳答案

您在上面得到的是:

  row.setName(((String) customers)[0]+" "+((String) customers)[1]);

强制转换优先于数组索引。

线索是消息[Ljava.lang.Object;无法转换为 java.lang.String

前导的[表示该类是一个数组类。

关于java - 设置名称时类转换异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25269382/

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