次のコードの出力が 12-12-1991 であることがわかりません。
説明してください、助けてくれてありがとう
Calendar c = Calendar.getInstance(TimeZone.getTimeZone("GMT+7"));
SimpleDateFormat simpleDF = new SimpleDateFormat("dd-MM-yyyy");
c.set(1991, 11, 12);
Date d = c.getTime();
System.out.println(simpleDF.format(d));