Java类没有main方法

标签 java class-method

我需要运行 GCD 的方法代码。我的 java 文件名为“GCD.java”,公共(public)类名为“GCD”。然而,即使我的任何行中都没有红色解释点圆圈,我仍然收到消息“GCD 类没有主要方法”。我可以在没有方法代码的情况下运行代码(即 public static void main(String[] args)),但我需要使用方法运行代码。谢谢。

============================

import java.util.Scanner;

    public class GCD
    {

        public static int getDivisor(int x, int y)
        {


        System.out.println("Greatest Common Divisor Finder");
        System.out.println();

        String choice = "y";
        Scanner sc = new Scanner(System.in);
        while (choice.equalsIgnoreCase("y"))
        {

            System.out.print("Enter first number: ");
            x = sc.nextInt();
            System.out.print("Enter second number: ");
            y = sc.nextInt();

            int secondNumber = 0;
            int firstNumber = 0;
            int Greatestcommondivisionfinder = 0;

            // x = first,  y = second
            if (x > y)
                {
                    do
        {
                        x -= y;
                        }
             while (x > y);
        do
        {
                        y -= x;
                        }
    while (y > 0);
            System.out.println("Greatest Common Divisor: " + x);
        }

            else if (y > x)
        {
        do
                        {
            y -= x;
                        }
    while(y > x);
        do
                        {
            x -= y;
                        }
    while (x > 0);
            System.out.println("Greatest Common Divisor: " + y);
        }
             else
                    {
                    int subtract;
                    do
                    {
                    subtract = (int)y - (int)x;
                    }

            while(y > x);
            int gcd;
            gcd = (int)x - subtract;
                    }


            System.out.println();
            System.out.print("Continue? (y/n): ");
            choice = sc.next();
            System.out.println();
                }
            return 0;
          }
    }

最佳答案

对于没有 main 方法的类,或者它有一个未声明为 public static void main(String[] args) 的 main 方法,这是完全有效的.

但是,为了将类视为 Java 应用程序的入口点,它需要具有该签名的方法(尽管参数名称可能会有所不同)。

所以基本上,你已经有了一个本身很好的类,但你不能单独启动它。您可以创建一个单独的类,例如

public class GcdLauncher {
    public static void main(String[] args) {
        GCD.getDivisor(0, 0); // Parameters are ignored anyway...
    }
}

编译后你可以运行:

java GcdLauncher

或者您可以向 GCD 类添加一个 public static void main(String[] args) 方法。

我强烈建议您更改您的 getDivisor 方法,使其不包含参数 - 无论如何,您实际上并没有使用它们......

关于Java类没有main方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22440497/

相关文章:

java - 在 Java 中从类外部调用方法

python - 如何模拟类方法的 cls 参数?

java - hibernate 中的 OneToOne - 未知 "mappedBy"

objective-c - 伪装成 Class 的 NSProxy 在 64 位运行时不处理 respondsToSelector

java - 我的脚本没有在最后一个填充行之后创建新行

java - Lucene 按国家排序

python - 如何记录从元类继承的方法?

python - @classmethod 和 @staticmethod 对初学者的意义

java - 如何使用 Spring 配置 UCanAccess JDBC 驱动程序?

java - JPA - 使用包含附加信息的多对多表格