Object[] obj = new Object[]{"a", 1, "b", 2, "c", 3}; for (int i = 0; i < obj.length; i++) { System.out.print(obj[i].toString() + " "); }