java试题-下面程序能正常运行吗

public class NULL {
    public static void haha() {
        System.out.println("haha");
    }
    public static void main(String[] args) {
        ((NULL) null).haha();
    }

}

网友评论0