多选题 Given that "it, IT" and "pt" are valid Locale codes, and given:
41. Date d = new Date();
42. DateFormat df;
43. Locale[] la = {new Locale ("it", "IT"), new Locale("pt") };
44. for(Locale i: la) {
45. df = DateFormat.getDateInstance(DateFormat. FULL, i);
46. System.out.println(d.format (df));
47. }
Which are true? (Choose all that apply.)
【正确答案】 D、E、F
【答案解析】