gpt4 book ai didi

java - 将 float 转换为整数

转载 作者:行者123 更新时间:2023-11-29 09:34:09 25 4
gpt4 key购买 nike

我来自 Python 背景并潜入 Java 世界。我正在尝试在 Java 中将 Float 转换为 int。我们在 Python 中做这样的事情 int_var = int(float_var)

public class p1 {
public static void main(String args[]) {
Integer a = new Integer(5);
Float b;
b = new Float(3.14);
a = (int)b;
System.out.println(a);
}
}
产生以下错误 - <pre>p1.java:7: error: inconvertible types
a = (int)b;
^
required: int
found: Float
1 error
</pre>

最佳答案

你可以这样做

a = b.intValue()

关于java - 将 float 转换为整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17874710/

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