shensi199312

Results 3 comments of shensi199312

原类: ```java public OkHttpClient() { this(new Builder()); } ``` 我想要的增强效果,这样可以吗 ```java @Instrument(Class="okhttp3.OkHttpClient") public class OkHttpClient { List interceptors; public OkHttpClient() { InstrumentApi.invokeOrigin(); interceptors.add(new GatewayCenterOkHttp3Interceptor()); } } ```

我看源码里面这里绕开了构造函数 ![image](https://user-images.githubusercontent.com/18387126/124755339-d2694900-df5d-11eb-8f97-f9390fd8e749.png)