I tried to create this simplest program and platform showed me this ,how can i resovlve situation? Thanks !
Asked
Active
Viewed 90 times
0
-
[Similar questions](https://www.google.com/#q=site:stackoverflow.com+java+eclipse+unable+to+launch+the+selection) – Hovercraft Full Of Eels May 28 '17 at 12:52
-
Because the signature of your `main` method is wrong. It must have a `String[]` parameter. Your `main` method has no parameters. It must be `public static void main(String[] args)`. – Jesper May 28 '17 at 13:03