0
package xyz;

import javax.swing.Timer;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;


public class XYZ {

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

        class TimeClass implements ActionListener {

            private int counter = 0;

            @Override
            public void actionPerformed(ActionEvent e) {
                counter++;
                System.out.println(counter);
            }

        }

        Timer timer;
        TimeClass tc = new TimeClass();
        timer = new Timer (100, tc);
        timer.start();
        Thread.sleep(20000);

    }
}

在上面的代码中:

  1. TimeClass 应该在 main() 函数中创建。否则会显示错误“无法从静态上下文引用的非静态变量。”。为什么是这样?

  2. 当我对 TimeClass 使用访问说明符(如 public 或 private)时,我遇到了非法的表达式开始错误。为什么是这样?

4

1 回答 1

5
  1. 如果您在 main 方法之外定义 TimeClass,它应该是静态的。因为您正在尝试从静态方法(主要)访问它。无法从静态块或方法访问非静态变量。

  2. 如果您在方法中定义一个类(如您的情况),则不能为它定义任何访问说明符。因为它只能在您的方法中访问,并且没有人可以在此方法之外看到或使用它。

将您的代码更改为这样的内容,然后它可以工作:

public class Test {

    private static class TimeClass implements ActionListener {

        private int counter = 0;

        @Override
        public void actionPerformed(ActionEvent e) {
            counter++;
            System.out.println(counter);
        }

    }

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

        TimeClass tc = new TimeClass();
        Timer timer = new Timer (100, tc);
        timer.start();
        Thread.sleep(20000);    
    }
}
于 2012-11-26T07:59:33.337 回答