質問編集履歴
1
一部変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,15 +18,15 @@
|
|
18
18
|
|
19
19
|
public static void main(String[] args) {
|
20
20
|
|
21
|
-
rndm = new Random();
|
21
|
+
rndm = new Random(); //非staticフィールドrndmをstatic参照できません
|
22
22
|
|
23
23
|
int r,g,b;
|
24
24
|
|
25
|
-
r=rndm.nextInt(255);
|
25
|
+
r=rndm.nextInt(255); //非staticフィールドrndmをstatic参照できません
|
26
26
|
|
27
|
-
g=rndm.nextInt(255);
|
27
|
+
g=rndm.nextInt(255); //非staticフィールドrndmをstatic参照できません
|
28
28
|
|
29
|
-
b=rndm.nextInt(255);
|
29
|
+
b=rndm.nextInt(255); //非staticフィールドrndmをstatic参照できません
|
30
30
|
|
31
31
|
System.out.println("変数r:"+r);
|
32
32
|
|