OkHttp newBuilder()
OkHttp newBuilder()
函数是什么newBuilder() exactly does in OkHttp. Does it create an entirely new client or adjusts the existing client as given here。 'adjusts' 在这种情况下究竟意味着什么?
它创建一个浅拷贝,因此您可以更改一些配置,同时保持其他一切不变。
client.newBuilder()
当你想重用当前客户端的部分配置时,你可以使用这个方法创建一个新的构建器,然后你可以使用这个新的构建器添加你的新设置,比如cookjar
,等等。
函数是什么newBuilder() exactly does in OkHttp. Does it create an entirely new client or adjusts the existing client as given here。 'adjusts' 在这种情况下究竟意味着什么?
它创建一个浅拷贝,因此您可以更改一些配置,同时保持其他一切不变。
client.newBuilder()
当你想重用当前客户端的部分配置时,你可以使用这个方法创建一个新的构建器,然后你可以使用这个新的构建器添加你的新设置,比如cookjar
,等等。