主线程异常??是不是你的main方法没参数?

解决方案 »

  1.   

    偶是用jcreat编译的,程序中明明就有main呀?下一步不知该怎么做了
      

  2.   

    public static void main(String[] args) {
        ...
    }
      

  3.   

    是不是把main函数写错了?
    照这样写public static void main(String[] args)
      

  4.   

    代码如下:package com.davidflanagan.examples.classes;
    /**
     * A class to compute the running average of numbers passed to it
     **/
    public class Averager {
        // Private fields to hold the current state.
        private int n = 0;
        private double sum = 0.0, sumOfSquares = 0.0;    /** 
         * This method adds a new datum into the average.
         **/
        public void addDatum(double x) {
            n++;
            sum += x;
            sumOfSquares += x * x;
        }
        
        /** This method returns the average of all numbers passed to addDatum() */
        public double getAverage() { return sum / n; }    /** This method returns the standard deviation of the data */
        public double getStandardDeviation() {
              return Math.sqrt(((sumOfSquares - sum*sum/n)/n));
        }    /** This method returns the number of numbers passed to addDatum() */
        public double getNum() { return n; }    /** This method returns the sum of all numbers passed to addDatum() */
        public double getSum() { return sum; }    /** This method returns the sum of the squares of all numbers. */
        public double getSumOfSquares() { return sumOfSquares; }    /** This method resets the Averager object to begin from scratch */
        public void reset() { n = 0; sum = 0.0; sumOfSquares = 0.0; }    /** 
         * This nested class is a simple test program we can use to check that 
         * our code works okay.
         **/
        public static class Test {
            public static void main(String args[]) {
                Averager a = new Averager();
                for(int i = 1; i <= 100; i++) a.addDatum(i);
                System.out.println("Average: " + a.getAverage());
                System.out.println("Standard Deviation: " +
           a.getStandardDeviation());
                System.out.println("N: " + a.getNum());
                System.out.println("Sum: " + a.getSum());
                System.out.println("Sum of squares: " + a.getSumOfSquares());
           }
        }
    }
      

  5.   

    public static class Test {
            public static void main(String args[]) {
                Averager a = new Averager();
                for(int i = 1; i <= 100; i++) a.addDatum(i);
                System.out.println("Average: " + a.getAverage());
                System.out.println("Standard Deviation: " +
           a.getStandardDeviation());
                System.out.println("N: " + a.getNum());
                System.out.println("Sum: " + a.getSum());
                System.out.println("Sum of squares: " + a.getSumOfSquares());
           }
        }
    中改为public static void main(String args[]) {
                Averager a = new Averager();
                for(int i = 1; i <= 100; i++) a.addDatum(i);
                System.out.println("Average: " + a.getAverage());
                System.out.println("Standard Deviation: " +
           a.getStandardDeviation());
                System.out.println("N: " + a.getNum());
                System.out.println("Sum: " + a.getSum());
                System.out.println("Sum of squares: " + a.getSumOfSquares());
           }
    即去掉这个类,把main方法写到Averager这个类中。去掉Test这个类。
      

  6.   

    看看jcreator中的项目配置项中的运行目录是不是与
    package com.davidflanagan.examples.classes;
    有矛盾,它有可能引起找不到类
      

  7.   

    艾,这个Test是个内部类,运行内部类的main()的方法Java Example in a Nutshell上面写了的,你仔细看看吧
      

  8.   

    晕,你那个main是内部类Test的