質問編集履歴
1
追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -60,6 +60,40 @@
|
|
60
60
|
|
61
61
|
```
|
62
62
|
|
63
|
+
FruitsConstants
|
64
|
+
|
65
|
+
```public class FruitsConstants {
|
66
|
+
|
67
|
+
// フルーツ定数(種類)
|
68
|
+
|
69
|
+
public static final String FRUITS_APPLE_01 = "りんご";
|
70
|
+
|
71
|
+
public static final String FRUITS_GRAPE_02 = "ぶどう";
|
72
|
+
|
73
|
+
public static final String FRUITS_WATERMELON_03 = "スイカ";
|
74
|
+
|
75
|
+
public static final String FRUITS_LEMON_04 = "レモン";
|
76
|
+
|
77
|
+
public static final String FRUITS_MELON_05 = "メロン";
|
78
|
+
|
79
|
+
// フルーツ定数(個数)
|
80
|
+
|
81
|
+
public static final Integer FRUITS_COUNT_10 = 10;
|
82
|
+
|
83
|
+
public static final Integer FRUITS_COUNT_20 = 20;
|
84
|
+
|
85
|
+
public static final Integer FRUITS_COUNT_45 = 45;
|
86
|
+
|
87
|
+
public static final Integer FRUITS_COUNT_78 = 78;
|
88
|
+
|
89
|
+
public static final Integer FRUITS_COUNT_100 = 100;
|
90
|
+
|
91
|
+
}
|
92
|
+
|
93
|
+
コード
|
94
|
+
|
95
|
+
```
|
96
|
+
|
63
97
|
からインポートしたprintFruitsを変数に解決できませんとエラーがでます。
|
64
98
|
|
65
99
|
この場合どのように記述すれば解決できるのでしょうか
|