package com.example; /** * 介绍:委托类 接口 * 作者:zhangxutong * 邮箱:mcxtzhang@163.com * 主页:http://blog.csdn.net/zxt0601 * 时间: 2016/12/9. */ public interface ITarget { void thing1(); void thing2(); void thing3(); }