質問編集履歴

2

改行の修正

2021/04/24 18:08

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,6 @@
1
- コマンドプロンプトで```Java
1
+ コマンドプロンプトで
2
+
3
+ ```Java
2
4
 
3
5
  import java.awt.*;
4
6
 

1

エラーメッセージの修正

2021/04/24 18:08

投稿

退会済みユーザー
test CHANGED
@@ -1 +1 @@
1
- このコドの間違い教えてください
1
+ JavaFXアプリケション・クラスはjavafx.application.Application拡張する必要があります
test CHANGED
@@ -1,6 +1,4 @@
1
- eclipseで
2
-
3
- ```Java
1
+ コマンドプロンプトで```Java
4
2
 
5
3
  import java.awt.*;
6
4
 
@@ -8,7 +6,7 @@
8
6
 
9
7
  class Main2 {
10
8
 
11
- public static void main(String[]args) {
9
+ public static void main(String[] args) {
12
10
 
13
11
 
14
12
 
@@ -66,96 +64,28 @@
66
64
 
67
65
 
68
66
 
69
- class Winstener extends WindowAdapter {
67
+ class WinListener extends WindowAdapter {
70
68
 
71
- public void windowClosing(WindowEnent e) {System.exit(0);}
69
+ public void windowClosing(WindowEvent e) {System.exit(0);}
72
70
 
73
71
  }
74
72
 
75
73
  ```
76
74
 
77
- を実行すると、
78
75
 
79
- ```Java
80
76
 
81
- import java.awt.Button;
82
-
83
- import java.awt.FlowLayout;
84
-
85
- import java.awt.Frame;
86
-
87
- import java.awt.event.ActionEvent;
88
-
89
- import java.awt.event.ActionListener;
90
-
91
- import java.awt.event.WindowAdapter;
92
-
93
- class Main2 {
77
+ をコンパイルし実行すると
94
-
95
- public static void main(String[]args) {
96
-
97
-
98
-
99
- }
100
-
101
-
102
-
103
- }
104
-
105
- class MyWindow2 extends Frame implements ActionListener {
106
-
107
- Button btn1,btn2;
108
-
109
- MyWindow2() {
110
-
111
- setTitle("push button");
112
-
113
- setSize(600,400);
114
-
115
- setLayout( new FlowLayout());
116
-
117
- btn1 = new Button("<<< button >>>");
118
-
119
- btn1.addActionListener(this);
120
-
121
- add(btn1);
122
-
123
- btn2 = new Button("<<< button2 >>>");
124
-
125
- btn2.addActionListener(this);
126
-
127
- add(btn2);
128
-
129
- setVisible(true);
130
-
131
- addWindowListener( new WinListener());
132
-
133
- }
134
-
135
-
136
-
137
- public void actionPerformed(ActionEvent e) {
138
-
139
-
140
-
141
- if(e.getSource() == btn1) btn1.setLabel("ckick Button1");
142
-
143
- if(e.getSource() == btn2) btn2.setLabel("click Button2");
144
-
145
- }
146
-
147
-
148
-
149
- }
150
78
 
151
79
 
152
80
 
153
- class Winstener extends WindowAdapter {
81
+ エラー: メイン・メソッドがクラスMyWindow2で見つかりません。次のようにメイン・メソッドを定義してください。
154
82
 
155
- public void windowClosing(WindowEnent e) {System.exit(0);}
83
+ public static void main(String[] args)
156
84
 
157
- }
85
+ またはJavaFXアプリケーション・クラスはjavafx.application.Applicationを拡張する必要があります
158
86
 
159
- ```
160
87
 
88
+
161
- というようにコ変換されます。なぜでしょうか?
89
+ というエラメッセージます。
90
+
91
+ どこを直せばいいですか?