美文网首页
Java non-static method balabala

Java non-static method balabala

作者: evilgiven | 来源:发表于2017-12-15 22:48 被阅读0次

    今天遇到了一个奇奇怪怪的error
    用 Gson.fromJson() 的时候

    non-static method Gson.fromJson() cannot be referenced from a static context

    大概是 Gson 或者 Gson.fromJson是一个静态(static)的东西, 不能被我写的非静态方法调用

    解决办法是实例化了一个Gson

    Gson gson = new Gson();

    gson.fromJson();

    相关文章

      网友评论

          本文标题:Java non-static method balabala

          本文链接:https://www.haomeiwen.com/subject/ajjjwxtx.html