关于 logcat 的解释?
Explanation about logcat?
我打印 logcat 以查看应用程序中的进程持续时间。我想知道线路信息。我已阅读link。但对此没有明确的解释。
01-12 14:54:35.789 20802-21237/com.test.myapp E/Compare end: END
01-12 14:54:35.799 20802-21237/com.test.myapp E/Compare Start: START
我的问题是 20802-21237 是什么意思?
那些是PID-TID。
PID是进程ID,TID是线程ID。
可以参考google关于logcat的描述:
PID stands for process identifier and TID is thread identifier; they
can be the same if there’s only one thread.
我打印 logcat 以查看应用程序中的进程持续时间。我想知道线路信息。我已阅读link。但对此没有明确的解释。
01-12 14:54:35.789 20802-21237/com.test.myapp E/Compare end: END
01-12 14:54:35.799 20802-21237/com.test.myapp E/Compare Start: START
我的问题是 20802-21237 是什么意思?
那些是PID-TID。 PID是进程ID,TID是线程ID。
可以参考google关于logcat的描述:
PID stands for process identifier and TID is thread identifier; they can be the same if there’s only one thread.