Java类没有主要方法

时间:2014-03-16 17:49:11

标签: java class-method

我需要为GCD运行方法代码。我的java文件名为“GCD.java”,公共类称为“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;
          }
    }

3 个答案:

答案 0 :(得分:6)

对于没有main方法的课程,或者主要方法没有声明为public static void main(String[] args),它完全有效。

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

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

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

然后在编译后你可以运行:

java GcdLauncher

或者您可以在public static void main(String[] args)课程中添加GCD方法。

我强烈建议您更改getDivisor方法但不要使用参数 - 无论如何你还没有真正使用它们......

答案 1 :(得分:1)

如果您的课程要用作主程序,则必须实现

public static void main(String[] args))

您可以调用GCD方法的方法。

答案 2 :(得分:1)

是的,正如您的Eclipse正确说明的那样,您的GCD.java文件中没有main方法。为了独立运行这个类,你需要有main方法。否则,您只能创建此类的Object并从其他类调用。