gpt4 book ai didi

java - 编译错误: casting

转载 作者:行者123 更新时间:2023-12-02 09:47:25 25 4
gpt4 key购买 nike

有人可以解释一下为什么下面的代码无法编译吗?错误是:“可能会损失精度。”:

byte a = 50;
byte b = 40;
byte sum = (byte)a + b;
System.out.println(sum);

谢谢。

最佳答案

请注意,强制转换的优先级高于 + 运算符。您的代码执行以下操作:

byte a = 50;
byte b = 40;
byte sum = ((byte)a) + b;
System.out.println(sum);

转换是多余的,因为a已经是字节。您的意思可能是:

byte a = 50;
byte b = 40;
byte sum = (byte) (a + b);
System.out.println(sum);

关于java - 编译错误: casting,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2756717/

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