質問編集履歴
1
コンストラクタなのにvoidをつけていてしまっていたので消しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
|
20
20
|
|
21
|
-
public
|
21
|
+
public Line() {
|
22
22
|
|
23
23
|
this.p1=new Point();
|
24
24
|
|
@@ -62,7 +62,7 @@
|
|
62
62
|
|
63
63
|
|
64
64
|
|
65
|
-
public
|
65
|
+
public Point() {
|
66
66
|
|
67
67
|
this.x = 0;
|
68
68
|
|
@@ -72,7 +72,7 @@
|
|
72
72
|
|
73
73
|
|
74
74
|
|
75
|
-
public
|
75
|
+
public Point(int x, int y) {
|
76
76
|
|
77
77
|
this.x = x;
|
78
78
|
|
@@ -104,7 +104,7 @@
|
|
104
104
|
|
105
105
|
|
106
106
|
|
107
|
-
public
|
107
|
+
public Line() {
|
108
108
|
|
109
109
|
this.p1=new Point();
|
110
110
|
|