如果要在一行中设置其他值,如何实现在其中设置值?

String amount = myJSON.optString("cValue")
double cValue = (amount != null && !amount.isEmpty()) ? Double.parseDouble(amount) : 0;
if (cValue > 0) {
    mySavings.setCouponValue(cValue);
} else {
    mySavings.setCouponValue(0.0);
}

最佳答案

您可以简单地做:

mySavings.setCouponValue((cValue > 0 ? cValue : 0.0));

10-07 23:29