论坛首页 入门技术论坛

instanceof操作符判断Java数组的类型

浏览 3386 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2008-12-15  
OO

如下面的代码:

 

public class Test 
{
	public static void main(String[] args)
	{
		int[] a = new int[4];
		int[] b = new int[4];
		int[] c = a;
		int[][][] d = new int[2][3][4];
		
		System.out.println(a instanceof Object);
		System.out.println(a instanceof int[]);
		System.out.println(d[0] instanceof int[][]);
		System.out.println(d[0][2] instanceof int[]);
		
		System.out.println(a.equals(b));
		System.out.println(a.equals(c));
	}
}

 

 

输出结果为:

true
true
true
true
false
true

 

论坛首页 入门技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics