We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3f7378 commit f65d4beCopy full SHA for f65d4be
Part1/Android/线程通信基础流程分析.md
@@ -134,7 +134,7 @@ public Handler(Callback callback, boolean async) {
134
1. `Looper.loop()`死循环中的`msg.target`是什么时候被赋值的?
135
2. `handler.handleMessage(msg)`在什么时候被回调的?
136
137
-###A2:`Looper.loop()`死循环中的`msg.target`是什么时候被赋值的?
+###A1:`Looper.loop()`死循环中的`msg.target`是什么时候被赋值的?
138
要分析这个问题,很自然的我们想到从发送消息开始,无论是`handler.sendMessage(msg)`还是`handler.sendEmptyMessage(what)`,我们最终都可以追溯到以下方法
139
```
140
public boolean sendMessageAtTime(Message msg, long uptimeMillis) {
0 commit comments