gpt4 book ai didi

Java:找不到符号

转载 作者:行者123 更新时间:2023-12-03 18:20:49 24 4
gpt4 key购买 nike

在 Javadoc 中是这样写的:

public static String toString(double d)

Returns a string representation of the double argument. All characters mentioned below are ASCII characters.

如果参数为 NaN,则结果为字符串“NaN”。

但是当我编译下面的代码时出现错误:找不到符号 NaN

String intStr2 =Double.toString(NaN); 

最佳答案

由于NaN没有定义,所以会抛出一个编译错误,用下面的来克服同样的问题,

String intStr2 = Double.toString(Double.NaN);

关于Java:找不到符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31188402/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com