书上说在静态方法中不能调用非静态的方法和引用非静态的成员变量。反之,则可以;public class TestThis {
public static void main(String[] args) {
new TestThis().run();
}
void run(){
System.out.println("BBBBB");
}
}上面的代码中,静态的main()方法为什么能调用非静态的run()方法呢?