RequestParams源码问题
来源:3-3 网络请求组件—Request封装
慕田峪2868672
2018-01-11
public RequestParams(final String key, final String value) {
this(new HashMap<String, String>() {
{
put(key, value);
}
});
}这个构造函数看不懂。老师能解释一下吗
写回答
1回答
-
qndroid
2018-01-11
这个没啥难的吧,就是调用有参数的另一个构造方法。
022018-01-12
相似问题