如何解决 lint warning "field is never used" but it is serialized

How to solve lint warning "field is never used" but it is serialized

我的 Android 项目中有一个小 class 包含一些变量,我在构造函数中分配它们。

然后我使用 Gson 库和函数 String Gson::toJson(Object src)

将对象序列化为 json

如何解决这些变量的 lint 警告:"private field is assigned but never accessed"?那个案例有特殊的评论吗?

编辑:抱歉还有另一个警告 "Field can be converted to a local variable" 这是错误的!

谢谢!

您可以在字段上添加 @SuppressWarnings("unused") 注释,以防止生成此类消息。