为什么我得到"静态错误:此类没有接受String []的静态void main方法。"即使我拥有它?

时间:2014-10-21 02:53:27

标签: java

我收到“静态错误:此类没有静态void main方法接受String []。”即使我有“public static void main(String args [])”作为我的代码的一部分 使用Dr. Java

public static void main(String args[]) throws Exception {

    // just for testing purposes
    int myArray[] = {4,6,8,1,3,2,9,5,7,6,4,2,1,3,9,8,7,5};
    mergeSort(myArray);
    System.out.println("Sorted array is:\n");
    for (int i = 0; i < myArray.length; i++) {
        System.out.print(myArray[i] + " ");
    }
    System.out.println();
}

上面有代码,我没有错误,但是当我尝试运行代码时,我得到了错误。 提前谢谢。

以下是对象类

之外的代码
class MergeSortNonRecursive {

    static Stack<ProgramFrame> callStack;

    // this implement the merge algorithm seen in class. Feel free to call it.
    public static void merge(int A[], int start, int mid, int stop) {
        int index1 = start;
        int index2 = mid + 1;
        int tmp[] = new int[A.length];
        int indexTmp = start;

        while (indexTmp <= stop) {
            if (index1 <= mid && (index2 > stop || A[index1] <= A[index2])) {
                tmp[indexTmp] = A[index1];
                index1++;
            } else {
                if (index2 <= stop && (index1 > mid || A[index2] <= A[index1])) {
                    tmp[indexTmp] = A[index2];
                    index2++;
                }
            }
            indexTmp++;
        }
        for (int i = start; i <= stop; i++) A[i] = tmp[i];
    }

    static void mergeSort(int A[]) {
        /* WRITE YOUR CODE HERE */
        //stack we use
        callStack = new Stack<ProgramFrame>();

        //initial program frame
        ProgramFrame current = new ProgramFrame(0, A.length - 1, 1);

        //put frame on stack
        callStack.push(current);

        //as long as our stack isn't empty...
        while (!callStack.empty()) {

            //as long as the top Frame contains more than one integer
            while (callStack.peek().start < callStack.peek().stop) {

                //must be defined before pushing or else the values mess up
                int left = callStack.peek().start;
                int middle = (callStack.peek().start + callStack.peek().stop) / 2;
                int right = callStack.peek().stop;

                current = new ProgramFrame(middle + 1, right, callStack.peek().PC++);
                callStack.push(current);
                //order ensures left is always on the top
                current = new ProgramFrame(left, middle, callStack.peek().PC++);
                callStack.push(current);
            }
            int PC = callStack.peek().PC; // need to check PC's
            int start = callStack.peek().start;  //assign start and mid for merge
            int mid = callStack.peek().stop; //assign left and middle for merge from the left frame
            callStack.pop();

            //required if the next Frame (the right frame) isn't at its base of 1 integer and they have to be the same PC otherwise this will run continously
            if ((callStack.peek().start != callStack.peek().stop) && (PC == callStack.peek().PC)) {

                //must be defined before pushing or else the values mess up
                int left = callStack.peek().start;
                int middle = (callStack.peek().start + callStack.peek().stop) / 2;
                int right = callStack.peek().stop;

                current = new ProgramFrame(middle + 1, right, callStack.peek().PC++);
                callStack.push(current);
                //order ensures left is always on the top
                current = new ProgramFrame(left, middle, callStack.peek().PC++);
                callStack.push(current);
            }

            int stop = callStack.peek().stop; //get stop from the right frame

            merge(A, start, mid, stop); //merge 
        }
    }

    //Static Error: This class does not have a static void main method accepting String[]. ??!??
    public static void main(String args[]) throws Exception {

        // just for testing purposes
        int myArray[] = {4,6,8,1,3,2,9,5,7,6,4,2,1,3,9,8,7,5};
        mergeSort(myArray);
        System.out.println("Sorted array is:\n");
        for (int i = 0; i < myArray.length; i++) {
            System.out.print(myArray[i] + " ");
        }
        System.out.println();
    }
}

整个代码如下,我的文件保存为MergeSortNonRecursive.java

import java.util.*;
import java.io.*;

class ProgramFrame {
    int start;
    int stop;
    int PC;

    public ProgramFrame(int myStart, int myStop, int myPC) {
        start = myStart;
        stop = myStop;
        PC = myPC;
    }

    // returns a String describing the content of the object
    public String toString() {
        return "ProgramFrame: start = " + start + " stop = " + stop + " PC = " + PC;
    }
}

class MergeSortNonRecursive {

    static Stack<ProgramFrame> callStack;

    // this implement the merge algorithm seen in class. Feel free to call it.
    public static void merge(int A[], int start, int mid, int stop) {
        int index1 = start;
        int index2 = mid + 1;
        int tmp[] = new int[A.length];
        int indexTmp = start;

        while (indexTmp <= stop) {
            if (index1 <= mid && (index2 > stop || A[index1] <= A[index2])) {
                tmp[indexTmp] = A[index1];
                index1++;
            } else {
                if (index2 <= stop && (index1 > mid || A[index2] <= A[index1])) {
                    tmp[indexTmp] = A[index2];
                    index2++;
                }
            }
            indexTmp++;
        }
        for (int i = start; i <= stop; i++) A[i] = tmp[i];
    }

    static void mergeSort(int A[]) {
        /* WRITE YOUR CODE HERE */
        //stack we use
        callStack = new Stack<ProgramFrame>();

        //initial program frame
        ProgramFrame current = new ProgramFrame(0, A.length - 1, 1);

        //put frame on stack
        callStack.push(current);

        //as long as our stack isn't empty...
        while (!callStack.empty()) {

            //as long as the top Frame contains more than one integer
            while (callStack.peek().start < callStack.peek().stop) {

                //must be defined before pushing or else the values mess up
                int left = callStack.peek().start;
                int middle = (callStack.peek().start + callStack.peek().stop) / 2;
                int right = callStack.peek().stop;

                current = new ProgramFrame(middle + 1, right, callStack.peek().PC++);
                callStack.push(current);
                //order ensures left is always on the top
                current = new ProgramFrame(left, middle, callStack.peek().PC++);
                callStack.push(current);
            }
            int PC = callStack.peek().PC; // need to check PC's
            int start = callStack.peek().start;  //assign start and mid for merge
            int mid = callStack.peek().stop; //assign left and middle for merge from the left frame
            callStack.pop();

            //required if the next Frame (the right frame) isn't at its base of 1 integer and they have to be the same PC otherwise this will run continously
            if ((callStack.peek().start != callStack.peek().stop) && (PC == callStack.peek().PC)) {

                //must be defined before pushing or else the values mess up
                int left = callStack.peek().start;
                int middle = (callStack.peek().start + callStack.peek().stop) / 2;
                int right = callStack.peek().stop;

                current = new ProgramFrame(middle + 1, right, callStack.peek().PC++);
                callStack.push(current);
                //order ensures left is always on the top
                current = new ProgramFrame(left, middle, callStack.peek().PC++);
                callStack.push(current);
            }

            int stop = callStack.peek().stop; //get stop from the right frame

            merge(A, start, mid, stop); //merge 
        }
    }

    //Static Error: This class does not have a static void main method accepting String[]. ??!??
    public static void main(String args[]) throws Exception {

        // just for testing purposes
        int myArray[] = {4,6,8,1,3,2,9,5,7,6,4,2,1,3,9,8,7,5};
        mergeSort(myArray);
        System.out.println("Sorted array is:\n");
        for (int i = 0; i < myArray.length; i++) {
            System.out.print(myArray[i] + " ");
        }
        System.out.println();
    }
}

2 个答案:

答案 0 :(得分:2)

class MergeSortNonRecursive 

需要:

public class MergeSortNonRecursive 

包含main方法的类必须是公共的。

更新:在Java博士中尝试过这个 看起来Java博士正试图运行ProgramFrame。我希望完整输出是这样的:

Welcome to DrJava.  Working directory is /code
> run ProgramFrame
Static Error: This class does not have a static void main method accepting String[].

在公共类MergeSortNonRecursive之后放置类ProgramFrame使其工作。 然而,你的mergesort有问题,它将永远循环。您需要调试它。

答案 1 :(得分:0)

一种可能性(从经验来讲)是在从Dr.Java Java运行程序之前,请确保在屏幕左栏中选择了正确的java类文件。例如,我的一个应用程序包含三个java类。如果我选择了主要方法的类,那么它可以正常工作。但是如果我在项目中选择了不同的类,那么我会收到错误消息:&#34;静态错误:此类没有静态void main方法接受String []。&#34;这个错误是有道理的,因为所选的类没有主要方法,但我希望Java博士能够查看项目中的所有类来找到主要方法。