Gson 为什么不将方法都写成静态方法?

发布于 2022-09-02 13:25:40 字数 197 浏览 17 评论 0

我一直很困惑为啥谷歌不将Gson类中的方法改为静态方法,用起来不是更方便吗?
我的前同事有好多人在结合httpclient使用时都是在发送消息的类中定义了一个属性:
private static Gson gson = new Gson();
调用时,就直接
gson.toJson(obj);
这种使用方法有没有什么潜在问题?
求解答啊...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

送你一个梦 2022-09-09 13:25:41

多线程同时调用会有问题吧
以下摘自Gson User Guide:

Sometimes you need to share state across custom
serializers/deserializers (see this discussion). You can use the
following three strategies to accomplish this:
1.Store shared state in static fields
2.Declare the serializer/deserializer as inner classes of a parent type, and use the instance fields of parent type to store shared state
3.Use Java ThreadLocal
1 and 2 are not thread-safe options, but 3 is.

始终不够 2022-09-09 13:25:41

容易出现变量共享冲突

生生漫 2022-09-09 13:25:41

弱弱的问一下,gson 是 json 写错了 还是有一种叫 gson 的语言?

煞人兵器 2022-09-09 13:25:41

我觉得可能是效率的问题,一旦写为 static ,则一加载就在内存中了,而这无疑会降低运行速度!

厌味 2022-09-09 13:25:41

一个Gson object内部可能有自定义Adapter,见GsonBuilder文档

如果你只需要默认的new Gson(), 可以只用一个singleton没有问题

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文