应该是指此接口的一个实例.interface Funny {
  public void playSound(String str);
}public class MyFunny implements Funny {
 ...
 public void playSound(String str) {
    System.out.println("str="+str);
 }
}public class T {
   public void test( Funny x) {
     x.playSound("hello");
   }
   public static void main(String[] args) {
      Funny x = new MyFunny();
      T t = new T();
      t.test(x);
   }
}