为什么不能在点浮点数和整数之间使用比较运算符?

问题描述 投票:0回答:1
    float x = 2.1;
    int y = 2;
    boolean trf = x > y;
    System.out.println(trf);

输出:

enter image description here

enter image description here

java types comparison operator-keyword comparison-operators
1个回答
-1
投票

您可以输入类型转换。创建一个新的变量:

yFloat = (float) y;

然后将新的yFloat用作y。

© www.soinside.com 2019 - 2024. All rights reserved.