質問編集履歴
2
ソースコードとエラーメッセージを分けました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,7 +12,23 @@
|
|
12
12
|
|
13
13
|
インスタンス::staticメソッドはコンパイルエラーが発生するのでしょうか。
|
14
14
|
|
15
|
+
|
16
|
+
|
15
17
|
### 発生している問題・エラーメッセージ
|
18
|
+
|
19
|
+
```
|
20
|
+
|
21
|
+
Main.java:10: error: incompatible types: invalid method reference
|
22
|
+
|
23
|
+
list.forEach(new Sample()::print); //インスタンスでstaticメソッドを参照
|
24
|
+
|
25
|
+
^
|
26
|
+
|
27
|
+
unexpected static method print(Integer) found in bound lookup
|
28
|
+
|
29
|
+
Note: Some messages have been simplified; recompile with -Xdiags:verbose to get full output
|
30
|
+
|
31
|
+
1 error
|
16
32
|
|
17
33
|
|
18
34
|
|
@@ -21,6 +37,10 @@
|
|
21
37
|
|
22
38
|
|
23
39
|
### 該当のソースコード
|
40
|
+
|
41
|
+
```
|
42
|
+
|
43
|
+
|
24
44
|
|
25
45
|
import java.util.*;
|
26
46
|
|
@@ -54,26 +74,6 @@
|
|
54
74
|
|
55
75
|
}
|
56
76
|
|
57
|
-
###エラーメッセージ
|
58
|
-
|
59
|
-
Main.java:10: error: incompatible types: invalid method reference
|
60
|
-
|
61
|
-
list.forEach(new Sample()::print); //インスタンスでstaticメソッドを参照
|
62
|
-
|
63
|
-
^
|
64
|
-
|
65
|
-
unexpected static method print(Integer) found in bound lookup
|
66
|
-
|
67
|
-
Note: Some messages have been simplified; recompile with -Xdiags:verbose to get full output
|
68
|
-
|
69
|
-
1 error
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
```ここに言語名を入力
|
74
|
-
|
75
|
-
Java
|
76
|
-
|
77
77
|
```
|
78
78
|
|
79
79
|
|
1
エラーメッセージを追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -54,6 +54,20 @@
|
|
54
54
|
|
55
55
|
}
|
56
56
|
|
57
|
+
###エラーメッセージ
|
58
|
+
|
59
|
+
Main.java:10: error: incompatible types: invalid method reference
|
60
|
+
|
61
|
+
list.forEach(new Sample()::print); //インスタンスでstaticメソッドを参照
|
62
|
+
|
63
|
+
^
|
64
|
+
|
65
|
+
unexpected static method print(Integer) found in bound lookup
|
66
|
+
|
67
|
+
Note: Some messages have been simplified; recompile with -Xdiags:verbose to get full output
|
68
|
+
|
69
|
+
1 error
|
70
|
+
|
57
71
|
|
58
72
|
|
59
73
|
```ここに言語名を入力
|