//采用数组形参来定义方法
public static void test (int a, String[] books);
//采用可变个数形参来定义方法
public static void test (int a, String... books);
说明: