平时做JAVA总是会遇到强制转换的时候,一般单个对象强制转换很方便,
例如Bb=null;A a=(A)b;
但是, B[] b=null; A[] a=(A[])b却会导致异常发生,为了解决这个问题,我们不得不对数组中每个元素单独进行强制转换,
for(int i=0;i<b.length;i++)
a[i]=(A)b[i];
如果只有这么两种类型进行转换也好,要是还有C类型到D类型等等很多其他类型怎么办? 鉴于这个原因,我写了一个通用的强制对数组进行转换的函数,对于上面这个转换只需要调用 A[] a=(A[])TestCast.cast(b,A.class) 就可以解决问题,很是方便;具体代码如下:
/**
* @author Administrator
*
*/
public class TestCast {
public static void main(String[]args) {
/**
*
*一般情况下数组和数组是不能直接进行转换的,例如:
*Object[]t1={"1","2"};
*String[]t2=(String[])t1;//这里会出现转换错误
*
*下面提供了一种方式进行转换
*/
// 1.0测试一般基础类
Object[]t1 = { " 1 " , " 2 " , " 3 " , " 4 " , " 5 " } ;
String[]m1 = (String[])TestCast.cast(t1,String. class );
for ( int i = 0 ;i < m1.length;i ++ )
System.out.println(m1[i]);
// 2.0测试复杂对象
Object[]t2 = { new Date( 1000 ), new Date( 2000 )} ;
Date[]m2 = (Date[])TestCast.cast(t2,Date. class );
for ( int i = 0 ;i < m2.length;i ++ )
System.out.println(m2[i].toString());
}
/**
*将数组array转换成clss代表的类型后返回
* @param array需要转换的数组
* @param clss要转换成的类型
* @return 转换后的数组
*/
public static Objectcast(Objectarray,Classclss) {
if ( null == clss)
throw new IllegalArgumentException( " argumentclsscannotbenull " );
if ( null == array)
throw new IllegalArgumentException( " argumentarraycannotbenull " );
if ( false == array.getClass().isArray())
throw new IllegalArgumentException( " argumentarraymustbearray " );
Object[]src = (Object[])array;
Object[]dest = (Object[])Array.newInstance(clss,src.length);
System.arraycopy(src, 0 ,dest, 0 ,src.length);
return dest;
}
}
* @author Administrator
*
*/
public class TestCast {
public static void main(String[]args) {
/**
*
*一般情况下数组和数组是不能直接进行转换的,例如:
*Object[]t1={"1","2"};
*String[]t2=(String[])t1;//这里会出现转换错误
*
*下面提供了一种方式进行转换
*/
// 1.0测试一般基础类
Object[]t1 = { " 1 " , " 2 " , " 3 " , " 4 " , " 5 " } ;
String[]m1 = (String[])TestCast.cast(t1,String. class );
for ( int i = 0 ;i < m1.length;i ++ )
System.out.println(m1[i]);
// 2.0测试复杂对象
Object[]t2 = { new Date( 1000 ), new Date( 2000 )} ;
Date[]m2 = (Date[])TestCast.cast(t2,Date. class );
for ( int i = 0 ;i < m2.length;i ++ )
System.out.println(m2[i].toString());
}
/**
*将数组array转换成clss代表的类型后返回
* @param array需要转换的数组
* @param clss要转换成的类型
* @return 转换后的数组
*/
public static Objectcast(Objectarray,Classclss) {
if ( null == clss)
throw new IllegalArgumentException( " argumentclsscannotbenull " );
if ( null == array)
throw new IllegalArgumentException( " argumentarraycannotbenull " );
if ( false == array.getClass().isArray())
throw new IllegalArgumentException( " argumentarraymustbearray " );
Object[]src = (Object[])array;
Object[]dest = (Object[])Array.newInstance(clss,src.length);
System.arraycopy(src, 0 ,dest, 0 ,src.length);
return dest;
}
}