teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

2

文言調整

2016/09/19 06:43

投稿

退会済みユーザー
answer CHANGED
@@ -1,4 +1,4 @@
1
- いいえ new しないでいいものなんて ENUM 以外ありません。
1
+ いいえ new しないでいいクラスは基本ありません。
2
2
 
3
3
  たとえば Calendar
4
4
 

1

削除忘れ部分

2016/09/19 06:43

投稿

退会済みユーザー
answer CHANGED
@@ -3,16 +3,14 @@
3
3
  たとえば Calendar
4
4
 
5
5
  ```java
6
- 963 public static Calendar More ...getInstance()
6
+ 963 public static Calendar getInstance() {
7
- 964 {
8
7
  965 Calendar cal = createCalendar(TimeZone.getDefaultRef(), Locale.getDefault());
9
8
  966 cal.sharedZone = true;
10
9
  967 return cal;
11
10
  968 }
12
11
 
13
12
  1013 private static Calendar createCalendar(TimeZone zone,
14
- 1014 Locale aLocale)
13
+ 1014 Locale aLocale) {
15
- 1015 {
16
14
  1016 // If the specified locale is a Thai locale, returns a BuddhistCalendar
17
15
  1017 // instance.
18
16
  1018 if ("th".equals(aLocale.getLanguage())