多选题 Given that "it, IT" is the locale code for Italy and that "pt, BR" is the locale code for Brazil, and given:
51. Date d = new Date();
52. DateFormat df = DateFormat.getDateInstance(DateFormat. FULL);
53. Locale[] la = {new Locale("it", "IT"), new Locale("pt", "BR")};
54. for(Locale l: la) {
55. df.setLocale(1);
56. System.out.println(df.format(d));
57. }
Which are true? (Choose all that apply.)
【正确答案】 C
【答案解析】