老师 ,你的这个查看安卓源代码的机器 是啥?感觉好棒啊 啊啊!在哪里下载啊?可以发给我吗 ?谢谢老师
295273099@qq.com
295273099@qq.com
2015-07-21
其实感觉handler的实现机制也不是蛮复杂,就是把线程交互的对象放在消息队列里面,然后取得时候从里面拿就ok了吧。
2015-07-20
老师讲的是他长时间的学习和经验的总结,所以对于小白来说不要指望一次就能听明白,多想想,再多看几遍就不会晕了。
2015-07-17
楼上有人说for(; ;)死循环,其实并不是死循环,看下源码:
for (;;) {
Message msg = queue.next(); // might block
if (msg == null) {
// No message indicates that the message queue is quitting.
return;
}
……
for (;;) {
Message msg = queue.next(); // might block
if (msg == null) {
// No message indicates that the message queue is quitting.
return;
}
……
2015-07-17