package JavaCallBack; /** * @author hanshizhe * 这是一个回调接口 */ public interface CallBack { public void solve(String result); }