Eclipse エラー: 選択を起動できません
このチュートリアルでは、Java での Eclipse エラー The selection cannot be launched, and there are no recent launches
について説明します。
Eclipse 選択を起動できません
エラー
Eclipse を使用している場合、選択を起動できません
というエラーが発生することがあります。 選択したクラスがあり、main
メソッドを持つクラスはありませんが、Eclipse ではこのエラーが発生します。これは、Eclipse が main
クラスを見つけた場合にのみ一連のクラスまたはアプリケーションを実行するためです。
Eclipse は、プロジェクト ファイルの 1つで main
メソッドを確認する必要があります。 そうしないと、アプリケーションを実行できません。
main
メソッドは、次のように適切に定義する必要があります。
public static void main(String[] args)
main
メソッドを適切に定義しないと、Eclipse は The selection cannot be launch
をスローします。 ここに例があります。
package delftstack;
public class Example {
public static void main(String[] args[]) throws IOException {
System.out.println("This is Delftstack.com");
}
}
main
メソッドが適切に定義されていないため、上記のコードは The selection cannot be launch
をスローします。 これが正しいバージョンのコードです。
package delftstack;
public class Example {
public static void main(String[] args) throws IOException {
System.out.println("This is Delftstack.com");
}
}
[]
は、main
メソッド ステートメントの String
キーワードに与えられます。 これで、このコードは正しく機能します。
出力を参照してください:
This is Delftstack.com
Sheeraz is a Doctorate fellow in Computer Science at Northwestern Polytechnical University, Xian, China. He has 7 years of Software Development experience in AI, Web, Database, and Desktop technologies. He writes tutorials in Java, PHP, Python, GoLang, R, etc., to help beginners learn the field of Computer Science.
LinkedIn Facebook