开发Android已有两年了,说来惭愧,回调虽然随处可见,并且网上关于回调函数和接口回调的内容很多,可一直没弄明白,总结不明白的原因如下:
1、java的接口定义以及向上转型是理解回调的基础;
使用接口的核心原因:为了能够向上转型为多个基类型。即利用接口的多实现,可向上转型为多个接口基类型。
2、匿名类。
代码随处可见new SthInterface()注册接口回调。
感谢csdn两篇文章让我彻底理解回调函数(尼玛,满满的广告的感觉。。。):
1、http://blog.csdn.net/hack_bug/article/details/7625646;
2、http://blog.csdn.net/pi9nc/article/details/23169357。
3、http://www.07net01.com/program/531517.html
其实我很愿意理解网上那个关于打电话需求帮助的回调函数例子
在此我也写了一个与此类似的例子:
1、首先定义一个接口(即回调接口)(帮助接口,可以向张三需求帮助,也可以向李四需求帮助,具体需要什么帮助,后期绑定自己实现。)
public interface HelperInterface {
void execute();
}
2、我们可以让张三帮助我们解决问题(当然找李四或者王五等)
public class HelperZhangsan implements HelperInterface{
@Override
public void execute() {
System.out.println("This is zhangsan_helper.You can also ask lisi_helper!!");
}
}
3、寻求帮助的类,他必须持有帮助的回调接口,因为找不到张三,可以找李四,只要回调接口不变,总可以找到帮助的类。
public class Ask {
private HelperInterface helperInterface;
public void setHelperInterface(HelperInterface helperInterface){ //注册
this.helperInterface = helperInterface;
}
public void resultForAsk(){
helperInterface.execute();
}
}
4、测试代码类,找个匿名接口实现类帮助我们:
public class Test {
public static void main(String[] args) {
Ask ask = new Ask();
ask.setHelperInterface(new HelperInterface() {
@Override
public void execute() {
System.out.println("hell dsc");
}
});
ask.resultForAsk();
}
}
先看命令模式的代码:
public class Test {
public static void main(String[] args) {
Ask ask = new Ask();<p><span style="white-space:pre"> </span>HelperZhangsan helper = new HelperZhangsan();</p><pre code_snippet_id="628054" snippet_file_name="blog_20150326_4_8993945" name="code" class="java"> ask.setHelperInterface(helper);
ask.resultForAsk();
}
}
Ask是命令模式的接收者,此处ask.setHelperInterface()传入的helper是一个命令的对象,回调机制中传入的是一个回调类。总结,其实就是在运行的时候传入command对象,而不是实现回调方法。
以上就是完整的回调函数的工作机制。