在EasyConstraintLayout中初始化LayoutParamsData的paths @Override protected void onLayout(boolean changed, int left, int top, int right, int bottom) { super.onLayout(changed, left, top, right, bottom); for (int i = 0, size = getChildCount(); i < size; i++) {…
这篇文章我们继续学习 main 方法,我们先来看看 ngx_debug_init() 这个方法. 从方法名我们也知道,debug初始化.我们先看看方法位置在哪.我们来断点在这个方法上面. Function “ngx_debug_init” not defined. 我们去源码里面查找,grep “ngx_debug_init” -r *. 通过搜索结果大家应该知道,这个函数主要用于跨操作系统的东西.在 Linux 系统中应该是 src/os/unix/ngx_linux_config.h:#de…