You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567
  1. class B_no {
  2. public void m() {
  3. System.out.println("B_no.m()");
  4. Class[] itfs = B_no.class.getInterfaces();
  5. System.out.println("B_no has interface? "+((itfs==null||itfs.length==0)?"no":itfs[0].getName()));
  6. }
  7. }