第五道Java小问题

public class Test {
		static void f(int[] b, int... a) {
			System.out.println(b.getClass() == a.getClass());
		}

		public static void main(String[] argu) {

			f(new int[] { 1, 2, 3 }, new int[0]);

		}
	}

 请问以上代码的输出是:

你可能感兴趣的:(java,F#)