We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
简要描述您碰到的问题。 toJSONString() 在Feature.NotWriteDefaultValue开启的情况下,float/double浮点数基本类型表现与int/long/boolean等类型表现不一致。 具体表现为: 在value等于默认值时,float/double类型会保留field,value为0.0,int/long/boolean不会保留field。
toJSONString()
Feature.NotWriteDefaultValue
请填写以下信息:
如何操作可以重现该问题:
List<Entry>
Entry
[{"doubleV":0.0,"floatV":0.0},{"doubleV":0.0,"floatV":0.0}]
public class Example { public static class Entry { public int intV; public long longV; public float floatV; public double doubleV; public boolean booleanV; } public static void main(String[] args) { List<Entry> entryList = List.of(new Entry(), new Entry()); String msg = JSON.toJSONString(entryList, JSONWriter.Feature.NotWriteDefaultValue); System.out.println(msg); } }
期望输出空字符串
实际输出结果:
如果你还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
问题描述
简要描述您碰到的问题。
toJSONString()
在Feature.NotWriteDefaultValue
开启的情况下,float/double浮点数基本类型表现与int/long/boolean等类型表现不一致。具体表现为:
在value等于默认值时,float/double类型会保留field,value为0.0,int/long/boolean不会保留field。
环境信息
请填写以下信息:
重现步骤
如何操作可以重现该问题:
toJSONString()
方法List<Entry>
,其中Entry
class包含不同基本类型成员变量[{"doubleV":0.0,"floatV":0.0},{"doubleV":0.0,"floatV":0.0}]
期待的正确结果
期望输出空字符串
相关日志输出
实际输出结果:
附加信息
如果你还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。
The text was updated successfully, but these errors were encountered: