[; cannot be cast to [;

时间:2025-04-04 13:13:50
  • package ;  
  •   
  • import ;  
  • import ;  
  •   
  • public class TestArray3 {  
  •     public static void main(String[] args) {  
  •         // 通常这种出错的情况是我们从数据库查询出来了数据,然后要对数据进行操作所引起的  
  •         // 这是因为数据从数据库查询出来的时候是带有自己的类型的,不一定都是string,  
  •         //所以这个时候不可以直接把数据转换为String[],而是要先转换为Object[],  
  •         //然后对转换好的Object[]数组进行操作  
  •         List list = new ArrayList();  
  •         Object[] arr1 = new Object[]{"1",2,"3",4.34};  
  •         Object[] arr2 = new Object[]{"1",5,"6",7};  
  •         (arr1);  
  •         (arr2);  
  •           
  •         // 这么转换是没有错的  
  •         Object[] obj = (Object[]) (0);  
  •         // 获取对应类型的数据  
  •         String str = (String) obj[0];  
  •         int i = (Integer) obj[1];  
  •         String str1 = (String) obj[2];  
  •         Double b = (Double) obj[3];  
  •         (  
  •                 "str="+str+"\n"+  
  •                         "i="+i+"\n"+  
  •                         "str1="+str1+"\n"+  
  •                         "b="+b+"\n"  
  •                 );  
  •           
  •         // 下面的转换就会报:[; cannot be cast to [; 错  
  •         String[] r1 = (String[]) (0);  
  •           
  •     }  
  •       
  • }