我正在尝试使用if语句给我一个错误左手赋值必须是一个变量。假设redeem = 3
,有人能指出我吗?我正在尝试将if语句子句附加到第一个(顶部)map.put
字符串。因此,如果redeem =3
添加“去!”到原来的map.put
。如果``我waredeem = 0nt添加其他。
map.put("rewardCount", "You've purchased " + XMLfunctions.getValue(e, "rewardCount") + " ... ");
if (XMLfunctions.getValue(e, "redeem") > 1) {
map.put("rewardCount", XMLfunctions.getValue(e, "redeem") + " to go!"));
} else {
map.put("rewardCount", XMLfunctions.getValue(e, "redeem"));
}
提前感谢java新手。
我希望我的输出是:
'你已经购买了5 ... 3去了!“
或者
“立即兑换”
取决于兑换的价值(这是一个数字或兑换字的字符串)