查看完整版本: 关於类和Main的问题

coolEdit 2010-3-25 03:19

关於类和Main的问题

public class Main {
    public static void main(String[] args) {        
         MyClass myclass = new MyClass();
        }

void aaa(){
        System.out.println("aaa");
    }
}

public class MyClass {
    MyClass() {
        final Timer timer = new Timer();
        timer.schedule(new TimerTask() {
            public void run() {
                timeout();
                timer.cancel();
            }
            private void timeout() {
                 System.out.println("Is Timeout!");
                 //请问在这怎样可以访问Main里的aaa()???
            }
        }, 2000);      
    }
}

[[i] 本帖最后由 coolEdit 于 2010-3-25 03:31 编辑 [/i]]

Nothing 2010-3-25 10:28

不可以调用

coolEdit 2010-3-25 23:05

:'( :'(
怎樣辨好....
页: [1]
查看完整版本: 关於类和Main的问题