class T implements TT {
public static void main(String[] args) {
T t = new T();
System.out.println(t instanceof TT);
}
}
interface TT {
}
------解决方案-------------------- 可以吧,比如 有个Interface I,class C implements I,那你在方法中写C c = new C(); System.out.println(c instanceof I);就会打印true 不知你问的是不是这个意思
------解决方案--------------------