Anh em cho ý kiến về đoạn code sau nhé!
Sau run trên cả eclip và jcreator đều k được nhỉ (


Mã:
public interface ClassInInterfaces {    void howdy();    class Test implements ClassInInterfaces {        public void howdy() {            System.out.println("Hello");        }        public static void main(String[] args) {            new Test().howdy();        }    }}