Eclipseに次のJavaコードを入力すると、エラーが返されます。私はこれがうまくいくはずの日食チュートリアルによって言われています。私は間違って何をしていますか? This is a picture of my code。EclipseのSWT Java JDEが動作しない
import org.eclipse.swt;
public class SWTHELLOWORLD{
public static void main(String[] args){
Display display=new Display();
Shell shell = new Shell(display);
shell.setText("Hello world");
shell.open();
while(!shell.isDisposed()){
if(!display.readAndDispatch())display.sleep();
}
display.dispose();
}
}
私はJavaアプリケーションとして実行すると、それはこのエラーを返します。
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
Display cannot be resolved to a type
Display cannot be resolved to a type
Shell cannot be resolved to a type
Shell cannot be resolved to a type
私は窓10を使っています。 –
画像としてテキストを投稿しないでください。あなたのコードとエラーメッセージをあなたの質問に貼り付けてください。あなたの問題:クラスは 'String'ではなく' String'と呼ばれます。また、あなたは全く輸入をしていないようです。 –
あなたは本当にJavaの基本を読み返す必要があります。エラーメッセージも非常に明確です。あなたは輸入品が不足しています。 – Baz