在Java中,可以使用以下方法删除整数中的".0":
double doubleValue = 123.0;
int intValue = (int) doubleValue;
double doubleValue = 123.0;
String formattedValue = String.format("%d", (int) doubleValue);
System.out.println(formattedValue);
import java.text.DecimalFormat;
public class Main {
public static void main(String[] args) {
double doubleValue = 123.0;
DecimalFormat decimalFormat = new DecimalFormat("#");
String formattedValue = decimalFormat.format(doubleValue);
System.out.println(formattedValue);
}
}
这些方法可以帮助您在Java中删除double类型数值中的".0"。
领取专属 10元无门槛券
手把手带您无忧上云