Afaq 1 / 1 / 0 Регистрация: 20.07.2014 Сообщений: 70 |
||||
1 |
||||
26.08.2014, 01:06. Показов 5826. Ответов 6 Метки нет (Все метки)
почему метод static void Main дает ошибку?
__________________
0 |
Programming Эксперт 94731 / 64177 / 26122 Регистрация: 12.04.2006 Сообщений: 116,782 |
26.08.2014, 01:06 |
Ответы с готовыми решениями: static void Main(string[] args) Перегрузите метод f так, чтобы соответствовала виду static void f (double x, out double y)
class Program Перегрузите метод f так, чтобы его сигнатура (заголовок) соответствовала виду static void f (double x, out double y) 6 |
64 / 63 / 43 Регистрация: 01.05.2012 Сообщений: 535 |
|
26.08.2014, 01:15 |
2 |
А что вы вообще хотите? Какая именно ошибка?
0 |
1 / 1 / 0 Регистрация: 20.07.2014 Сообщений: 70 |
|
26.08.2014, 01:21 [ТС] |
3 |
awp-sirius, у меня вообще метод static void main не работает, всегда дает 11 ошибок.
0 |
Заблокирован |
|
26.08.2014, 01:23 |
4 |
Не может он чистый давать ошибки значит чтото правилось еще вылаживайте весь код постараюсь помочь
1 |
Afaq 1 / 1 / 0 Регистрация: 20.07.2014 Сообщений: 70 |
||||
26.08.2014, 01:28 [ТС] |
5 |
|||
awp-sirius, примерно что то такое хочу написать такое:
Добавлено через 4 минуты
0 |
Заблокирован |
||||
26.08.2014, 01:32 |
6 |
|||
Решение Для начала у вас в коде в 1 посте слишком рано закрывается скобка класса. Добавлено через 1 минуту
1 |
1 / 1 / 0 Регистрация: 20.07.2014 Сообщений: 70 |
|
26.08.2014, 01:36 [ТС] |
7 |
Butter, spasibo!
0 |
The java error: main method not found in the file, please define the main method as: public static void main(string[] args) occurs if the main method not found in class or the main method is not accessible or the main method is invalid. The main method indicates the start of the application. The main method syntax must be as public static void main(String[] args) { }. Alternatively, java program must extend javafx.application.Application. Otherwise, “or a JavaFX application class must extend javafx.application.Application” error will be shown.
In Java, each application must have the main method. The main method is the entry point of every java program. The java program searches for the main method while running. This error occurred when the main method is not available.
In java, the JavaFX application does not to have a main method, instead the JavaFX application must extend javafx.application.Application class. Otherwise “Error: Main method not found in class, please define the main method as: public static void main(String[] args) or a JavaFX application class must extend javafx.application.Application” exception will be thrown in java.
Exception
Error: Main method not found in class, please define the main method as:
public static void main(String[] args)
or a JavaFX application class must extend javafx.application.Application
Error: Main method is not static in class, please define the main method as:
public static void main(String[] args)
Error: Main method must return a value of type void in class, please
define the main method as:
public static void main(String[] args)
Error Code
The Error code looks like as below. If you run javac Test.java & java Test The above exception will be thrown. The Test class neither have main method nor extend javafx.application.Application class.
package com.yawintutor;
public class Test {
}
Root Cause
Spring boot is looking for the main method to start the spring boot application. This error occurred because the main method is not available.
Any one of the following is the possible cause of this issue
- The main method is deleted
- The main method name is renamed
- The signature of the main method is changed
public static void main(String[] args) {
// block of code
}
Solution 1
The java main method is the entry point of the java program. If the main method is missing in the program, the exception will be thrown. Check the main method in the code, and add the main method as shown below.
package com.yawintutor;
public class Test {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
The below example shows the main method of the spring boot application.
package com.yawintutor;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class SpringHelloWorldApplication {
public void main(String[] args) {
SpringApplication.run(SpringHelloWorldApplication.class, args);
}
}
Solution 2
The main method in the java application must be public. If it is not a public, java compiler can not access the main method. If the access specifier is not specified or not a public, then the exception will be thrown.
package com.yawintutor;
public class Test {
static void main(String[] args) {
System.out.println("Hello World");
}
}
Output
Error: Main method not found in class com.yawintutor.Test, please define the main method as:
public static void main(String[] args)
or a JavaFX application class must extend javafx.application.Application
Solution
package com.yawintutor;
public class Test {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
Solution 3
If the main method does not have static keyword, the main method can not access from outside of the class. The object of the class only can access the main method. To create a object, the main method must be executed. This will cause the exception.
package com.yawintutor;
public class Test {
public void main(String[] args) {
System.out.println("Hello World");
}
}
Output
Error: Main method is not static in class com.yawintutor.Test, please define the main method as:
public static void main(String[] args)
Solution
package com.yawintutor;
public class Test {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
Solution 4
The main method must return void. If the return data type is added other than void. the exception will be thrown.
package com.yawintutor;
public class Test {
public static int main(String[] args) {
System.out.println("Hello World");
return 0;
}
}
Output
Error: Main method must return a value of type void in class com.yawintutor.Test, please
define the main method as:
public static void main(String[] args)
Solution
package com.yawintutor;
public class Test {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
Solution 5
The main method must have only one argument. The argument must be a string array. If no argument is configured or different data type argument is configured or more than one argument is configured, the exception will be thrown.
package com.yawintutor;
public class Test {
public static void main() {
System.out.println("Hello World");
}
}
Output
Error: Main method not found in class com.yawintutor.Test, please define the main method as:
public static void main(String[] args)
or a JavaFX application class must extend javafx.application.Application
Solution
package com.yawintutor;
public class Test {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
How to create simple Spring Boot Application with Main method
In Java programs, the point from where the program starts its execution or simply the entry point of Java programs is the main() method. Hence, it is one of the most important methods of Java and having a proper understanding of it is very important.
The Java compiler or JVM looks for the main method when it starts executing a Java program. The signature of the main method needs to be in a specific way for the JVM to recognize that method as its entry point. If we change the signature of the method, the program compiles but does not execute.
The execution of the Java program, the java.exe is called. The Java.exe inturn makes Java Native Interface or JNI calls, and they load the JVM. The java.exe parses the command line, generates a new String array, and invokes the main() method. A daemon thread is attached to the main method, and this thread gets destroyed only when the Java program stops execution.
Syntax: Most common in defining main() method
Java
class
GeeksforGeeks {
public
static
void
main(String[] args)
{
System.out.println(
"I am a Geek"
);
}
}
Output explanation: Every word in the public static void main statement has got a meaning to the JVM.
1. Public
It is an Access modifier, which specifies from where and who can access the method. Making the main() method public makes it globally available. It is made public so that JVM can invoke it from outside the class as it is not present in the current class.
Java
class
GeeksforGeeks {
private
static
void
main(String[] args)
{
System.out.println(
"I am a Geek"
);
}
}
Error: Main method not found in class, please define the main method as: public static void main(String[] args) or a JavaFX application class must extend javafx.application.Application
2. Static
It is a keyword that is when associated with a method, making it a class-related method. The main() method is static so that JVM can invoke it without instantiating the class. This also saves the unnecessary wastage of memory which would have been used by the object declared only for calling the main() method by the JVM.
Java
class
GeeksforGeeks {
public
void
main(String[] args)
{
System.out.println(
"I am a Geek"
);
}
}
Error: Main method is not static in class test, please define the main method as: public static void main(String[] args)
3. Void
It is a keyword and is used to specify that a method doesn’t return anything. As the main() method doesn’t return anything, its return type is void. As soon as the main() method terminates, the java program terminates too. Hence, it doesn’t make any sense to return from the main() method as JVM can’t do anything with the return value of it.
Java
class
GeeksforGeeks {
public
static
int
main(String[] args)
{
System.out.println(
"I am a Geek"
);
return
1
;
}
}
Error: Main method not found in class, please define the main method as: public static void main(String[] args) or a JavaFX application class must extend javafx.application.Application
4. main
It is the name of the Java main method. It is the identifier that the JVM looks for as the starting point of the java program. It’s not a keyword.
Java
class
GeeksforGeeks {
public
static
void
myMain(String[] args)
{
System.out.println(
"I am a Geek"
);
}
}
Error: Main method not found in class, please define the main method as: public static void main(String[] args) or a JavaFX application class must extend javafx.application.Application
5. String[] args
It stores Java command-line arguments and is an array of type java.lang.String class. Here, the name of the String array is args but it is not fixed and the user can use any name in place of it.
Java
class
GeeksforGeeks {
public
static
void
main(String[] args)
{
for
(String elem : args)
System.out.println(elem);
}
}
Output:
1 2 3
Apart from the above-mentioned signature of main, you could use public static void main(String args[]) or public static void main(String… args) to call the main function in Java. The main method is called if its formal parameter matches that of an array of Strings.
Can the main method be int? If not, why?
Java
class
GeeksforGeeks {
public
static
int
main(String[] args)
{
System.out.println(
"GeeksforGeeks"
);
}
}
Java does not return int implicitly, even if we declare the return type of main as int. We will get a compile-time error:
prg1.java:6: error: missing return statement } ^ 1 error
Java
class
GeeksforGeeks {
public
static
int
main(String[] args) {
System.out.println(
"GeeksforGeeks"
);
return
0
;
}
}
Now, even if we do return 0 or integer explicitly ourselves, from int main. We get a run time error.
Error: Main method must return a value of type void in class GeeksforGeeks, please define the main method as: public static void main(String[] args)
Explanation:
The C and C++ programs which return int from main are processes of Operating System. The int value returned from main in C and C++ is exit code or exit status. The exit code of the C or C++ program illustrates, why the program was terminated. Exit code 0 means successful termination. However, the non-zero exit status indicates an error.
For Example exit code 1 depicts Miscellaneous errors, such as “divide by zero”.
The parent process of any child process keeps waiting for the exit status of the child. And after receiving the exit status of the child, cleans up the child process from the process table and free the resources allocated to it. This is why it becomes mandatory for C and C++ programs(which are processes of OS) to pass their exit status from the main explicitly or implicitly.
However, the Java program runs as a ‘main thread’ in JVM. The Java program is not even a process of Operating System directly. There is no direct interaction between the Java program and Operating System. There is no direct allocation of resources to the Java program directly, or the Java program does not occupy any place in the process table. Whom should it return an exit status to, then? This is why the main method of Java is designed not to return an int or exit status.
But JVM is a process of an operating system, and JVM can be terminated with a certain exit status. With help of java.lang.Runtime.exit(int status) or System.exit(int status).
Can we execute a java program without main method?
Yes, we can execute a java program without a main method by using a static block.
A static block in Java is a group of statements that gets executed only once when the class is loaded into the memory by ClassLoader, It is also known as a static initialization block, and it goes into the stack memory.
class StaticBlock { static { System.out.println( "This class can be executed without main"); System.exit(0); } }